Objective: Write a function named matrix_mul(a, b). Given a two 2D array(Matrix) A and B, the function returns the product of A and B B [[1,21,[3,4],[5,61] Description: The product C of two matrices A and B is defined as where j is summed over for all possible values of i and
OR
OR