https://www.acmicpc.net/problem/5717
#Solution
a, b = map(int, input().split())
while not (a == 0 and b == 0):
print(a+b)
a, b = map(int, input().split())
'Programming [Python] > 백준 알고리즘 솔루션' 카테고리의 다른 글
#185 백준 파이썬 [9610] 사분면 (0) | 2019.11.05 |
---|---|
#184 백준 파이썬 [10988] 팰린드롬인지 확인하기 (0) | 2019.11.05 |
#182 백준 파이썬 [10886] 0 = not cute / 1 = cute (0) | 2019.11.05 |
#181 백준 파이썬 [10102] 개표 (0) | 2019.11.05 |
#180 백준 파이썬 [5063] TGN (0) | 2019.11.05 |