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