Read two n x m matrices. Print their sum matrix.
Write a complete program: read the input with input() and print the result with print().
input()
print()
Input
2 2 1 2 3 4 5 6 7 8
Output
6 8 10 12