Print Non-Boundary Elements

Given a matrix of custom size the task is to print the non-boundary elements.

Example: Consider a matrix:-

1457
3028
5619

Here non-boundary elements are 0, 2.

Java
import java.util.*;
public class PrintNonBoundaryElements
{
    public static void main(String args[])
    {
        int row=0,col=0;
        Scanner sc=new Scanner(System.in);
        System.out.print("Enter no.of rows: ");
        row=sc.nextInt();
        System.out.print("Enter no.of columns: ");
        col=sc.nextInt();
        int ar[][]=new int[row][col];
        System.out.println("Enter matrix elements:-");
        for(int i=0;i<row;i++)
        {
            for(int j=0;j<col;j++)
            {
                ar[i][j]=sc.nextInt();
            }
        }
        System.out.print("Non-Boundary elements are: ");
        for(int i=1;i<row-1;i++)
        {
            for(int j=1;j<col-1;j++)
            {
                System.out.print(ar[i][j]+" ");
            }
        }
    }
}
Java