https://www.acmicpc.net/problem/10952
import sys
a, b = map(int, sys.stdin.readline().split())
while a and b:
print(a+b)
a, b = map(int, sys.stdin.readline().split())
'알고리즘 > 백준' 카테고리의 다른 글
[Python] 백준 1110번 - 더하기 사이클 (0) | 2020.06.09 |
---|---|
[Python] 백준 10951번 - A+B - 4 (0) | 2020.06.09 |
[Python] 백준 10871번 - X보다 작은 수 (0) | 2020.06.09 |
[Python] 백준 2439번 - 별 찍기 - 2 (0) | 2020.06.09 |
[Python] 백준 2438번 - 별 찍기 - 1 (0) | 2020.06.09 |
댓글