import sys

for line in sys.stdin:
    a, b = map(int, line.split())
    print(a + b)

 

'# 코딩 문제 관련 > 파이썬' 카테고리의 다른 글

백준 15596번(python)  (0) 2019.06.27
백준 2562번(python)  (0) 2019.06.27
백준 10952번(python)  (0) 2019.06.27
백준 11022번(python)  (0) 2019.06.27
백준 10950번(python)  (0) 2019.06.27


while(True):
    A, B = list(map(int, input().split()))
    if(A == 0 and B == 0):
        break
    else:
        print(A + B)

'# 코딩 문제 관련 > 파이썬' 카테고리의 다른 글

백준 2562번(python)  (0) 2019.06.27
백준 10951번(python)  (0) 2019.06.27
백준 11022번(python)  (0) 2019.06.27
백준 10950번(python)  (0) 2019.06.27
백준 10950번(python)  (1) 2019.06.27


Case = int(input())

for i in range(Case):
    A, B = list(map(int, input().split()))
    print('Case #{}: {} + {} = {}'.format(i+1,A, B, A + B))

'# 코딩 문제 관련 > 파이썬' 카테고리의 다른 글

백준 10951번(python)  (0) 2019.06.27
백준 10952번(python)  (0) 2019.06.27
백준 10950번(python)  (0) 2019.06.27
백준 10950번(python)  (1) 2019.06.27
백준 2884번(python)  (2) 2019.06.27


Case = int(input())

for i in range(Case):
    A, B = list(map(int, input().split()))
    print('Case #{}: {}'.format(i+1, A + B))

'# 코딩 문제 관련 > 파이썬' 카테고리의 다른 글

백준 10952번(python)  (0) 2019.06.27
백준 11022번(python)  (0) 2019.06.27
백준 10950번(python)  (1) 2019.06.27
백준 2884번(python)  (2) 2019.06.27
백준 2753번(python)  (0) 2019.06.27


Case = int(input())

for _ in range(Case):
    A, B = list(map(int, input().split()))
    print(A + B)

'# 코딩 문제 관련 > 파이썬' 카테고리의 다른 글

백준 11022번(python)  (0) 2019.06.27
백준 10950번(python)  (0) 2019.06.27
백준 2884번(python)  (2) 2019.06.27
백준 2753번(python)  (0) 2019.06.27
백준 1330번(python)  (0) 2019.06.27