본문 바로가기
python-algorithm

[백준] 4101

by 무적김두칠 2020. 12. 23.

1
2
3
4
5
6
7
import sys
while True:
    a,b =map(int, sys.stdin.readline().split())
    if a==0 and b==0: exit()
    else:
        if a>b: print("Yes")
        else : print("No")
cs
반응형

'python-algorithm' 카테고리의 다른 글

[백준] 4504  (0) 2020.12.23
[백준] 4493  (0) 2020.12.23
[백준] 3486  (0) 2020.12.23
[백준] 3460  (0) 2020.12.23
[백준] 3058  (0) 2020.12.23

댓글