CJCoding With Joseph

Multiplication Table of Input

Read a single integer n from input and print its multiplication table from 1 to 5, one line per row, in this exact format. For example, if the input is:

5

print:

5 x 1 = 5
5 x 2 = 10
5 x 3 = 15
5 x 4 = 20
5 x 5 = 25

Use a loop from 1 to 5.

Expected Output:

5 x 1 = 5
5 x 2 = 10
5 x 3 = 15
5 x 4 = 20
5 x 5 = 25
Topics:
User Input
๐Ÿ“ฅ Auto-Input:
5
This input is automatically fed to your program's stdin
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.