지나가던 개발자
[Python] 백준 4101번(크냐?) 문제 풀이 본문
어디가?
numbers = []
while True:
a = list(map(int, input().split()))
if a == [0, 0]:
break
numbers.append(a)
for number in numbers:
if number[0] > number[1]:
print("Yes")
continue
print("No")
'PS > Python' 카테고리의 다른 글
[Python] 백준 2231번(분해합) 문제 풀이 (0) | 2022.03.27 |
---|---|
[Python] 백준 1731번(추론) 문제 풀이 (0) | 2022.03.27 |
[Python] 백준 11022번(A+B - 8) 문제 풀이 (0) | 2022.03.27 |
[Python] 백준 1264번(모음의 개수) 문제 풀이 (0) | 2022.03.18 |
[Python] 백준 11656번(접미사 배열) 문제 풀이 (0) | 2022.03.13 |
Comments