https://www.acmicpc.net/problem/10951
a, b = map(int, input().split())
while (a, b):
try:
print(a+b)
a, b = map(int, input().split())
except EOFError:
break
'알고리즘 > 백준' 카테고리의 다른 글
[Python] 백준 10039번 - 평균 점수 (0) | 2020.06.09 |
---|---|
[Python] 백준 1110번 - 더하기 사이클 (0) | 2020.06.09 |
[Python] 백준 10952번 - A+B - 5 (0) | 2020.06.09 |
[Python] 백준 10871번 - X보다 작은 수 (0) | 2020.06.09 |
[Python] 백준 2439번 - 별 찍기 - 2 (0) | 2020.06.09 |
댓글