You need to sign in to test your code and save your progress on this question.
Problem Description
Multiplication Table
Medium
Loops
Arithmetic
Write a program that takes an integer `n` as input and prints its multiplication table from 1 to 5. Each line should just output the result of `n * i`.
Example Input
3
Example Output
3
6
9
12
15
Success Rate:
0% (0 passed / 0 attempted)
Code
Unsaved
Test Results
Click "Run Code" to evaluate your code against the tests.