using System;
using System.Collections.Generic;
using System.Text;
namespace Chengfa
{
class Program
{
static void Main(string[] args)
{
int i;int j;
int m=0;
for (i = 1; i <= 9;i++ )
{
for (j = 1; j <= i;j++ )
{
m = j * i;
Console.Write("{0}*{1}={2} ", j, i, m);
}
Console.WriteLine();
}
Console.ReadKey();
}
}
}