public class FractionDriver
{
	public static void main(String args[])
	{
		final int SIZE = 10;
		
		Fraction [][] table;
		table = new Fraction[SIZE][SIZE];
		
		// build the table
		for(int row = 1; row < table.length; row++)
			for (int col = 1; col < table[row].length; col++)
				table[row][col] = new Fraction(row, col);
				
		// print the table
		for(int row = 1; row < table.length; row++)
		{
			for (int col = 1; col < table[row].length; col++)
				System.out.print("\t" + table[row][col]);
			System.out.println();
		}		
	}
}