while True: a, b = input().strip().split() a = int(a) b = int(b) print(a + b)