728x90
반응형
단순 사칙연산 문제이다.
while 1:
a, b = map(int, input().split())
if a == b == 0:
break
print("Yes" if a > b else "No")
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 4493번 가위 바위 보?(python) (0) | 2021.02.13 |
---|---|
백준 알고리즘 4388번 받아올림(python) (0) | 2021.02.13 |
백준 알고리즘 4084번 Viva la Diferencia(python) (0) | 2021.02.13 |
백준 알고리즘 3507번 Automated Telephone Exchange(python) (0) | 2021.02.12 |
백준 알고리즘 3486번 Adding Reversed Numbers(python) (0) | 2021.02.12 |