Dystopian II


Submit solution

Points: 1
Time limit: 2.0s
Memory limit: 256M

Author:
Problem type
Allowed languages
C, C++, Java, Python

Dystopian Land of Fives Part 2: The Remaining Drones

The keypad malfunctioned the last minute and some of the drones didn't get destroyed and Brooke is on the run again! This time she comes across another human-made shelter with another special keypad.

This keypad consists of n non-negative integers and Brooke has to determine if the sum of the n non-negative integers is not divisible by 5 to destroy the drones. Brooke, however, is exhausted from the run again and needs your help!

Input

The first line contains an integer n\ (1\leq n \leq 10^5). The next line contains n space-seperated integers x_i\ (0 \leq x_i \leq 1000).

Output

If the sum of the n numbers is not divisible by 5, print "Slay!" in one line. Otherwise, print "Cooked :(".

Examples

Input 1
5
3 10 2 5 6
Output 1
Slay!
Input 2
5
3 10 2 5 5
Output 2
Cooked :(

Comments

There are no comments at the moment.