# 코딩 문제 관련/파이썬
백준 10951번(python)
Hwiyong Jo
2019. 6. 27. 10:28
import sys
for line in sys.stdin:
a, b = map(int, line.split())
print(a + b)