113

Code

  ///Name: Conner Wygaerts
///Period: 6
///Project Name: BasicNested
///File Name: BasicNested.java
///Date Finished: 5/3/16

import java.util.Scanner;

public class BasicNested
{
    public static void main( String[] args ) throws Exception
    {

            for (int a = 0; a < 6; a++)
            {
                for (int b = 0; b < 6; b++)
                {
                    System.out.print(" (" + a + "," + b + ")");
                }
                
                System.out.println();
            }
        }
    }
  

Picture of the output

YourInitials.html