Please write this Java program as simple as possible and with comments throughou
ID: 3735810 • Letter: P
Question
Please write this Java program as simple as possible and with comments throughout explaining what is happening. Thank you Program 2 (30 points Design and implement a Java program for programming exercise 8.5, page 306 (name it AddMatricies)as described in the problem statement. Write method addMatrix) as specified. To test this method, the main method of your program prompts the user to enter two matrices that have the same dimensions, and then display their sum as shown in the sample run. The method addMatrix () must be designed to handle two- dimensional arrays with any number of rows and columns. Design the main method of your program to handle all input and output (following the model shown in the textbook) and to allow the user to re-run the program with different sets of inputs (i.e., use a loop). Document your code and organize the output using appropriate formatting techniques