Colin loves chicken strips. After searching far and wide, he has finally found the great chicken strip shrine!
The great chicken strip shrine contains a sorted line of infinite chicken strips where each chicken strip has a unique integer attached to it. To have a meal, Colin will choose to eat all the chicken strips in the range
However, due to someone being a bit too hungry, the chicken strips between the range
The taste score of the meal is the product of the numbers of all the remaining chicken strips in the range
Colin would like to know if the taste score of the meal is positive, negative, zero, or nonexistent. Please help build him a program to do this!
Constraints
For all subtasks:
Subtask 1 [20%]
Subtask 2 [80%]
No additional constraints.
Input Specification
The first line of input will contain space-separated integers
The next line of input will contain space-separated integers
Output Specification
Let
If CHICKEN STRIP!!!
. If 0
. If -1
. If burnt chicken nugget
.
Sample Input 1
1 5
2 4
Sample Output 1
CHICKEN STRIP!!!
Explanation for Sample 1
The chicken strips in the range CHICKEN STRIP!!!
.
Sample Input 2
-9 1
-6 0
Sample Output 2
-1
Explanation for Sample 2
The chicken strips in the range -1
.
Sample Input 3
-2 2
-2 2
Sample Output 3
burnt chicken nugget
Explanation for Sample 3
The chicken strips in the range burnt chicken nugget
.
Comments