← Back to List

34824번: 연대 다음 고대 ↗

Solutions

Python 3
177 B | 177 chars
for i in range(int(input())):
    s = input()
    if s == "yonsei":
        print("Yonsei Won!")
        break
    if s == "korea":
        print("Yonsei Lost...")
        break