Write a program that multiplies two matrices.

Enter how many row in first matrics A : 2
Enter how many column in first matrics A : 2
1
4
3
0
Enter how many row in second matrics B : 2
Enter how many column in second matrics B : 2
1
3
9
8
Output :- 
The multiplication of A & B is :
37    35
3     9