Help me with this code?
import java.io.*; class Matrix { public static void main(String args[]) { int n,i,j,k; BufferedReader br=new BufferedReader(new InputStreamReader(System.in))throws IOException System.out.println("enter n value"+n); n=Integer.parseInt(br.readLine()); System.out.println("enter the matrix a"); for(i=0;i<n;i++) { for(j=0;j<n;j++) int a[i][j]=Integer.parseInt(br.readLine ()); } System.out.println("enter the matrix b"); for(i=0;i<n;i++) { for(j=0;j<n;j++) int b[i][j]=Integer.parseInt(br.readLine()); } for(i=0;i<n;i++) { for(j=0;j<n;j++) System.out.println("Addition is:"+(a[i][j]+b[i][j])); } } }