← Back to List

17350번: 2루수 이름이 뭐야 ↗

Solutions

Python 3
128 B | 120 chars
for i in range(int(input())):
    a=input()
    if "anj" == a:
        print("뭐야;")
        break
else:
    print("뭐야?")