Matrix Addition using Java

Java code for matrix addition. 
  1. import java.util.Scanner;  
  2.   
  3. class MatrixAdds {  
  4.     public static void main(String args[]) {  
  5.         int m, n, i, j;  
  6.         Scanner in = new Scanner(System. in );  
  7.         System.out.println("Enter the number of rows and columns of matrix:");  
  8.         m = in .nextInt();  
  9.         n = in .nextInt();  
  10.         int first[][] = new int[m][n];  
  11.         int second[][] = new int[m][n];  
  12.         int sum[][] = new int[m][n];  
  13.         System.out.println("Enter the elements of first matrix:");  
  14.         for (i = 0; i < m; i++)  
  15.         for (j = 0; j < n; j++)  
  16.         first[i][j] = in .nextInt();  
  17.         System.out.println("Enter the elements of second matrix:");  
  18.         for (i = 0; i < m; i++)  
  19.         for (j = 0; j < n; j++)  
  20.         second[i][j] = in .nextInt();  
  21.         for (i = 0; i < m; i++)  
  22.         for (j = 0; j < n; j++)  
  23.         sum[i][j] = first[i][j] + second[i][j];  
  24.         System.out.println("Resultant matrix after addtion of two entered matrices:-");  
  25.         for (i = 0; i < m; i++) {  
  26.             for (j = 0; j < n; j++)  
  27.             System.out.print(sum[i][j] + "\t");  
  28.             System.out.println();  
  29.         }  
  30.     }  
  31. }  
Thank you, keep learning and sharing.