Print Descending

Given a starting number X, print all the numbers from X all the way down to 1 each on a line

Example 1

Input

5

Output

5
4
3
2
1

Example 2

Input

10

Output

10
9
8
7
6
5
4
3
2
1

Example 3

Input

13

Output

13
12
11
10
9
8
7
6
5
4
3
2
1

Test your solution here
when it passes, copy it and submit it here so your coach can grade it.