Continued from Problem #1. You are to inplement a program that performs matrix multiplication. The user is expected to input two matrices in the same format as described in Problem #1. Your program should output the matrix result.
3 2
1 1
2 2
3 3
2 3
1 1 1
2 2 2
3 3 3
6 6 6
9 9 9