1314: 乘法口诀表

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:102 Solved:72

Description

输入一个整数n1<=n<=9,输出1~n的乘法口诀表。

Input

一行,输入n的值。

Output

按样例所示,输出若干行结果。

Sample Input Copy

5

Sample Output Copy

1*1=1
1*2=2  2*2=4
1*3=3  2*3=6  3*3=9
1*4=4  2*4=8  3*4=12  4*4=16
1*5=5  2*5=10  3*5=15  4*5=20  5*5=25