프로그래밍_일반/백준
boj 4101
Spadework
2020. 2. 4. 10:13
* Solved 기준 브론즈3 단순 풀이
while True:
a,b = map(int, input().split())
if(a == 0 and b == 0): break
print('Yes' if a>b else 'No')