Skip to content
C

Multiplication Table Generator

Easypython

Print the multiplication table of a given number, from 1 to 10.

Approach: loop i from 1 to 10 with a for loop and range(), printing one line per value in the exact format n x i = n*i.

Input: One line: a whole number n.

Output: 10 lines, one per i from 1 to 10: n x i = <n*i>

Input (stdin)

Output

Run your code to see output here...