Write a program that adds two matrices.

Enter how many row in first matrics A :  1
Enter how many column in first matrics A : 1
5
Enter how many row in second matrics B : 2
Enter how many column in second matrics B : 2
3
5
7
8
Output :- 
The sum of A & B is :
8
//////////////////////////////////////////////////////////////////////////
Enter how many row in first matrics A :  2
Enter how many column in first matrics A : 2
7
0
1
3

Enter how many row in second matrics B : 2
Enter how many column in second matrics B : 2
3
5
7
8
Output :- 
The sum of A & B is :
10    5
8    11