for ( int row = 1; row < moon.length; row++) { for ( int col = 1; col < moon[row].length; col ++){ System.out.print(moon[row][col]); System.out.print(' '); //Position A } //Position B }