/// Name: Brian Phillips
/// Period: 5
/// Program name:Multiplication Table
/// File Name: Multiply.java
/// Date Finished: 5/5/2016
class Multiply
{
public static void main (String [] args)
{
for (int x = 1; x < 13; x++)
{
for (int y = 1; y < 10; y++)
{
System.out.print((x*y) + "\t");
}
System.out.println();
}
}
}