https://www.acmicpc.net/problem/4101
#Solution
a, b = map(int, input().split())
while not (a == 0 and b == 0):
if a > b:
print("Yes")
else:
print("No")
a, b = map(int, input().split())
'Programming [Python] > 백준 알고리즘 솔루션' 카테고리의 다른 글
#177 백준 파이썬 [2754] 학점계산 (0) | 2019.11.05 |
---|---|
#176 백준 파이썬 [10156] 과자 (0) | 2019.11.05 |
#174 백준 파이썬 [2480] 주사위 세개 (0) | 2019.11.05 |
#173 백준 파이썬 [1789] 수들의 합 (0) | 2019.11.05 |
#172 백준 파이썬 [10757] 큰 수 A+B (0) | 2019.11.05 |