백준 풀이

백준 4101번 파이썬

ag2개발자 2022. 8. 23. 23:53
while True:
    a,b=map(intinput().split())
    if a+b==0:
        break
    if a>b:
        print("Yes")
    else:
        print("No")

'백준 풀이' 카테고리의 다른 글

백준 5522번 파이썬  (0) 2022.08.24
백준 5339번  (0) 2022.08.23
백준 5565번 파이썬  (0) 2022.08.23
백준 9093번 파이썬  (0) 2022.08.23
백준 2563번 파이썬  (0) 2022.08.23