[Practice] Matrix Multiplication - Fixed


Submit solution

Points: 10
Time limit: 0.5s
Memory limit: 2M

Author:
Problem type

Problem Definition

Write a Program to perform Matrix Multiplication.

Method
  • Define two matrices A and B with order 3 x 3.
  • Perform the Matrix Multiplication

Sample Input

1 0 -1
0 -1 1
-1 0 1

1 2 3
2 3 1
3 1 2

Sample Output

-2 1 1
1 -2 1
2 -1 -1


Comments

There are no comments at the moment.