Problem 3 Matrix 10 Points Create a 3×3 matrix of int values. Implement four functions, each expecting the matrix as parameter input. The first function must use a nested loop to prompt a user to enter each value Show the indices when prompting for input and populate the matrix with these values. The second function outputs the matrix and formats the output to align all columns and rows to accommodate values up to 1000. The third function finds and returns the minimum value in the matrix. The fourth function finds and returns the maximum value in the matrix. Call each function from the main and output the minimum and maximum values returned by the third and fourth function respectively. Input Value at 0,0: 7 Value at 0,1: 2