Algorithm/Implementaion

[백준] 4101번 크냐?

등촌동 꼬북이 2020. 10. 20. 21:48

큰 듯..ㅎ

 

import sys
while 1:
    x, y = map(int, sys.stdin.readline().split())
    if x == y == 0:
        break
    if x > y:
        print("Yes")
    else:
        print("No")
저작자표시 (새창열림)