1 2 3 4 5 6
5 7 9
a = list(map(int, input().split())) b = list(map(int, input().split())) result = [x + y for x, y in zip(a, b)] print(*result)