...

/

Coding Challenge: Multiplication Table

Coding Challenge: Multiplication Table

Learn how to write a code that inputs any random number from the user and returns a multiplication table of that number.

Problem statement

Write a program that asks the user for a number, then show the multiplication table for this number.

Input

Enter a number: 2

Expected output

2 x 1 = 2
2 x
...