반응형
# @Author YoungMinKim
# baekjoon
import sys
while True:
x,y = map(int,sys.stdin.readline().split())
if x == y == 0:
break
if x>y:
print('Yes')
else:
print('No')
반응형
'백준 문제풀이' 카테고리의 다른 글
baekjoon - python - 5217 (0) | 2020.10.14 |
---|---|
baekjoon - python - 4892 (0) | 2020.10.14 |
baekjoon - python - 4101 (0) | 2020.10.14 |
baekjoon - python - 16430 (0) | 2020.10.14 |
baekjoon - python - 19602 (0) | 2020.10.14 |
댓글