https://www.acmicpc.net/problem/10886
N = int(input()) cute = not_cute = 0 for i in range(N): if int(input()) == 1: cute += 1 else: not_cute += 1 print("Junhee is cute!" if cute > not_cute else "Junhee is not cute!")