Sequence - 1
Very easy
Execution time limit is 1 second
Runtime memory usage limit is 64 megabytes
Display the sequence of numbers based on the given variant number n.
n=1: 1 2 3 4 5 6 7 8 9 10
n=2: 0 1 2 3 4 5 6 7 8 9
n=3: 1 3 5 7 9 11 13 15 17 19
n=4: 2 4 6 8 10 12 14 16 18 20
n=5: 9 8 7 6 5 4 3 2 1 0
n=6: 5 10 15 20 25 30 35 40 45 50
Input
A single integer n, where 1 ≤ n ≤ 6
Output
Print the sequence of numbers corresponding to the given n.
Examples
Input #1
Answer #1
Submissions 1K
Acceptance rate 35%