문제
풀이
while(True):
a ,b = map(int, input().split())
if a == 0 and b == 0 :
break;
else:
print("Yes" if a > b else "No")
'IT 차곡차곡' 카테고리의 다른 글
[백준/파이썬] 1476번: 날짜 계산 (Python) (0) | 2021.04.19 |
---|---|
[백준/파이썬] 2750번: 수 정렬하기 (Python) (0) | 2021.04.16 |
[백준/파이썬] 15552번: 빠른 A+B (Python) (0) | 2021.04.16 |