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