public class MyClass {
public static void main(String args[]) {
int a[][] = { {1, 0, 2},
{3, 5, 6},
{7, 4, 1} };
int b[][] = { {1, 0, 1},
{2, 2, 1},
{1, 3, 1} };
int rows = a.length;
int cols = a[0].length;
int sum[][] = new int[rows][cols];
for (int i = 0; i < rows; i++) {
for (int j = 0; j < cols; j++) {
sum[i][j] = a[i][j] + b[i][j];
}
}
for (int i = 0; i < rows; i++) {
for (int j = 0; j < cols; j++) {
System.out.print(sum[i][j] + " ");
}
System.out.println();
}
}
}
/*
run:
2 0 3
5 7 7
8 7 2
*/