Олимпиадный тренинг

Задача 18787. matrix addition


Задача

Темы:
Two square tables of numbers are given. It is required to build a third, 
each element of which is equal to the sum of the elements in the same place
in the 1st and 2nd tables.
 
Input data
In the input file, first the number N is written, then the first table is written,
and after it - the second. Table elements are numbers from 0 to 100. 
1<=N<=100.
 
Output
Output the resulting table to the output file.
 
Sample input file
3
1 2 3
4 5 6
7 8 9
 
11 12 13
14 15 16
17 18 19
 
Sample Output
12 14 16