/**
 * An application that generates a multiplication table
 */
public class TimesTable
{
    public static void main(String[] args)
    {
	int      column, row, size;
	int[][]  table;

	size  = 10;

	table = new int[size][size];

	// Generate the entries
	for (row=0; row < size; row++)
	{
	    for (column=0; column < size; column++)
	    {
		table[row][column] = row * column;
	    }
	}



	// Print the entries
	for (row=0; row < size; row++)
	{
	    for (column=0; column < size; column++)
	    {
		System.out.print(table[row][column]+"\t");
	    }
	    System.out.println();
	}
    }
}
