using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
int[,] array = new int[10, 10];
for (int a = 1; a <= 9; a++)
{
for (int b = 1; b <= 9; b++)
{
array[a, b] = a * b;
}
}
for (int c = 1; c <= 9; c++)
{
for (int d = 1; d <= 9; d++)
{
Console.WriteLine("" + c + "*" + d + "=" + array[c, d]);
}
}
}
}
}