PROGRAMMING:9 * 9 multiplication table
###Task description
```
Input integer n and output the nth row of 9 * 9 multiplication table.
```
###Input format:
```
Several sets of data, each of which is an integer between 1 and 9.
```
###Output format:
```
Several rows, each row a set of data output results, pay attention to the alignment between the expressions.
```
###Input example:
```in
1 3 6 9
```
###Output example:
```out
1*1=1
1*3=3 2*3=6 3*3=9
1*6=6 2*6=12 3*6=18 4*6=24 5*6=30 6*6=36
1*9=9 2*9=18 3*9=27 4*9=36 5*9=45 6*9=54 7*9=63 8*9=72 9*9=81
```
answer:If there is no answer, please comment
```
Input integer n and output the nth row of 9 * 9 multiplication table.
```
###Input format:
```
Several sets of data, each of which is an integer between 1 and 9.
```
###Output format:
```
Several rows, each row a set of data output results, pay attention to the alignment between the expressions.
```
###Input example:
```in
1 3 6 9
```
###Output example:
```out
1*1=1
1*3=3 2*3=6 3*3=9
1*6=6 2*6=12 3*6=18 4*6=24 5*6=30 6*6=36
1*9=9 2*9=18 3*9=27 4*9=36 5*9=45 6*9=54 7*9=63 8*9=72 9*9=81
```
answer:If there is no answer, please comment