/// Name: Tim Chuang
/// Period: 7
/// Program Name: Coords
/// File Name: Coords.java
/// Date Finished: 5/5/2016
public class Coords
{
public static void main( String[] args ) throws Exception
{
System.out.println();
for ( int i = 0; i < 6; i++)
{
for ( int j = 0; j < 6; j++)
{
System.out.print("(" + i + "," + j + ")");
}
System.out.println();
}
System.out.println();
}
}