113

Code

    ///Name: Joshua Bautista
    ///Period: 6
    ///Date: 6/4/16
    
    public class N
    {
        public static void main(String[] args)
        {
            for ( int x = 0; x < 6; x++)
            {
                for ( int y = 0; y < 6; y++)
                {
                    System.out.print("(" + x + "," + y + ") ");
                }
                
                System.out.println("");
            }
        }
    }
    

Picture of the output

Assignment 1