Ethan's class is getting back one of Mr. Sun's ICS tests, notorious for being the toughest in the school. The test is out of . Mr. Sun dislikes decimal marks, so all grades are integers.
Ethan secretly took a peek at Mr. Sun's desk and knows the highest scores, each with a score
. Unfortunately, he did not see his name beside any of these scores.
Ethan will be satisfied with a mark . If Ethan still has a chance of getting
output
RELEAF
. Otherwise, output PANIK
.
Constraints
Input Specification
The first line of input will contain the integer .
The next lines will contain an integer
.
Output Specification
Output RELEAF
if Ethan still has a chance of getting and
PANIK
otherwise.
Sample Input 1
3
48
46
46
Sample Output 1
RELEAF
Explanation for Sample Output 1
The highest scores are
,
, and
. From this we can see that Ethan can get a score
. Because
Ethan still has a chance of getting
.
Sample Input 2
4
46
47
43
45
Sample Output 2
PANIK
Comments