using System;
public class Program
{
public static void Main()
int table;
for(int i = 5;i <= 9;i++)
for(int j = 15;j > 0;j--)
if(j == 4)
break;
}
table = i * j;
Console.WriteLine("{0} X {1} = {2}",i,j,table);
Console.WriteLine("--------------------------");