public static void Main()
int[,] a = new int[8, 9];
for(int i = 0; i < 8; i++){
for(int j = 0; j < 9; j++){
int temp = (i + 2) * (j + 1);
Console.WriteLine("Print Start");
for(int i = 0; i < 8; i++){
for(int j = 0; j < 9; j++){
Console.WriteLine((i + 2) + "*" + (j + 1) + "=" + temp);
Console.WriteLine("==================");