1144: 打印乘法口诀

Memory Limit:128 MB Time Limit:1.000 S Judge Style:Text Compare Creator:
Submit:1287 Solved:454

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