Problem1211--双重循环练习

1211: 双重循环练习

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MB

Description

输入一个整数N,输出N的乘法表。

Input

输入一个整数 N

Output

输出乘法表,式子间有空格隔开。

Sample Input Copy

3

Sample Output Copy

1*1=1 
1*2=2 2*2=4 
1*3=3 2*3=6 3*3=9

HINT

【数据规模】
1<=n<=12

Source/Category