9154: ABC281 —— A - Count Down
[Creator : ]
Description
Print all non-negative integers less than or equal to $N$ in descending order.
Input
The input is given from Standard Input in the following format:
```
$N$
```
```
$N$
```
Output
Print $X$ lines, where $X$ is the number of non-negative integers less than or equal to $N$.
For each $i=1, 2, \ldots, X$, the $i$-th line should contain the $i$-th greatest non-negative integer less than or equal to $N$.
For each $i=1, 2, \ldots, X$, the $i$-th line should contain the $i$-th greatest non-negative integer less than or equal to $N$.
Constraints
- $1 \leq N \leq 100$
- $N$ is an integer.
- $N$ is an integer.
Sample 1 Input
3
Sample 1 Output
3
2
1
0
We have four non-negative integers less than or equal to 3, which are 0, 1, 2, and 3.
To print them in descending order, print 3 in the first line, 2 in the second, 1 in the third, and 0 in the fourth.
To print them in descending order, print 3 in the first line, 2 in the second, 1 in the third, and 0 in the fourth.
Sample 2 Input
22
Sample 2 Output
22
21
20
19
18
17
16
15
14
13
12
11
10
9
8
7
6
5
4
3
2
1
0