public class arrayyj{ public static void main(String[] args){ int[][] b=new int[10][10]; for (int[] i:b) for (int j:i) System.out.printf("%d ",j); }}