티스토리 뷰
import sys
while True:
a, b = map(int, sys.stdin.readline().split())
if a == 0 and b == 0:
break
else:
print(a + b)
'Algorithm > noj.am' 카테고리의 다른 글
[Python] 백준 11021번 - A+B - 7 (0) | 2020.12.30 |
---|---|
[Python] 백준 10953번 - A+B-6 (0) | 2020.12.30 |
[Python] 백준 2440번 - 별찍기 3 (0) | 2020.12.21 |
[Python] 백준 1629번 : 곱셈 (0) | 2020.12.21 |
[Swift] 백준 2577 (0) | 2019.11.08 |