Pseudocode Compiler
Practice

Times Table

EASYLoops

Read a positive integer N. Output the multiplication table for N from N×1 to N×10, one result per line.

Input: A positive integer N. Output: Ten lines — N×1, N×2, …, N×10.

Example:

Input:  3
Output: 3
        6
        9
        12
        15
        18
        21
        24
        27
        30
Premium is coming soon. All grading features are currently unlocked.

Sample Test Cases

Test 1: 3 times table
Inputs: 3
Expected: 3 6 9 12 15 18 21 24 27 30
Test 2: 7 times table
Inputs: 7
Expected: 7 14 21 28 35 42 49 56 63 70
Press Ctrl+Enter to run your code
or Ctrl+Shift+Enter to grade