https://www.acmicpc.net/problem/10886
n = int(input())
count_0, count_1 = 0, 0
for _ in range(n):
opinion = int(input())
if opinion == 0:
count_0 += 1
elif opinion == 1:
count_1 += 1
if count_1 > count_0:
print("Junhee is cute!")
else:
print("Junhee is not cute!")