2 lines
97 B
Python
2 lines
97 B
Python
while (s := list(map(int, input().split()))) != [0]*2 :
|
|
print('Yes' if s[0] > s[1] else 'No') |