honey_pot
[python] 백준 5717번 본문
while(True):
m, f = map(int, input().split())
if m==0 and f==0:
break
print(m+f)
'문제 풀이' 카테고리의 다른 글
[python] 백준 10214번 (0) | 2021.06.08 |
---|---|
[python] 백준 10162번 (0) | 2021.06.08 |
[python] 백준 9610번 (0) | 2021.06.08 |
[python] 백준 9506번 (0) | 2021.06.06 |
[python] 백준 2476번 (0) | 2021.06.06 |
Comments