문제 풀이
[python] 백준 4101번
_tera_
2021. 6. 6. 20:09
while True:
a, b = map(int, input().split())
if a > b:
print("Yes")
elif a==0 and b ==0:break
else: print("No")