Problem2174--Multiplication table

2174: Multiplication table

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 0  Solved: 0
[Submit] [Status] [Web Board] [Creator:]

Description

Write a program to output the nine-nine multiplication table.The format of the output is

Input

m

Output

Multiplication equations and results of m value

Sample Input Copy

1

Sample Output Copy

1 times 10 = 10
1 times 9 = 9
1 times 8 = 9
1 times 7 = 7
1 times 6 = 6
1 times 5 = 9
1 times 4 = 4
1 times 3 = 3
1 times 2 = 2
1 times 1 = 1

Source/Category

12