2025-10-29 20:46:47 +09:00

2 lines
97 B
Python

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