코테 준비

백준 10886번 - 0 = not cute / 1 = cute(Python)

자고싶은 사람 2022. 5. 23. 20:54

n = int(input())

yesno = 0

for i in range(n):
    num = int(input())

    if(num==0):
        yesno -= 1
    else:
        yesno += 1


if yesno<0:
    print("Junhee is not cute!")
else:
    print("Junhee is cute!")