bảng nhân

View as PDF

Submit solution

Points: 0.10
Time limit: 1.0s
Memory limit: 64M
Input: stdin
Output: stdout

Authors:
Problem type

Viết chương trình hiển thị bảng nhân của một số nguyên nhập từ bàn phím.

Input

Input một dòng duy nhất số nguyên n (2≤n≤9) từ bàn phím

Output

Output bảng nhân của số nguyên n.

Example 1

Input

2

Output

2x1=2
2x2=4
2x3=6
2x4=8
2x5=10
2x6=12
2x7=14
2x8=16
2x9=18
2x10=20

Example 2

Input

9

Output

9x1=9
9x2=18
9x3=27
9x4=36
9x5=45
9x6=54
9x7=63
9x8=72
9x9=81
9x10=90

Comments

Please read the guidelines before commenting.


There are no comments at the moment.