atcoder#ABC281A. [ABC281A] Count Down
[ABC281A] Count Down
Score : points
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 .
3
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.
22
22
21
20
19
18
17
16
15
14
13
12
11
10
9
8
7
6
5
4
3
2
1
0