Beakjoon&프로그래머스/파이썬

[백준/파이썬] 24768번 Left Beehind

현장 2023. 3. 15. 19:59

-Code

while 1:
    x, y = map(int, input().split())

    if x == y == 0:
        break

    if x + y == 13:
        print("Never speak again.")
    elif x == y:
        print("Undecided.")
    elif x > y:
        print("To the convention.")
    else:
        print("Left beehind.")