#abc281a. [abc281_a]Count Down
[abc281_a]Count Down
Problem Statement
Print all non-negative integers less than or equal to in descending order.
Constraints
- is an integer.
Input
The input is given from Standard Input in the following format:
Output
Print lines, where is the number of non-negative integers less than or equal to .
For each , the -th line should contain the -th greatest non-negative integer less than or equal to .
Sample Input 1
3
Sample Output 1
3
2
1
0
We have four non-negative integers less than or equal to , which are , , , and .
To print them in descending order, print in the first line, in the second, in the third, and in the fourth.
Sample Input 2
22
Sample Output 2
22
21
20
19
18
17
16
15
14
13
12
11
10
9
8
7
6
5
4
3
2
1
0