728x90
반응형

단순 사칙연산 문제이다.

while 1:
    a, b = map(int, input().split())
    if a == b == 0:
        break
    print("Yes" if a > b else "No")
728x90
반응형

+ Recent posts