#abc281a. A - Count Down
A - Count Down
Score : points
问题描述
以降序打印所有不大于 的非负整数。
以上为通义千问 qwen-max 翻译,仅供参考。
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
update @ 2024/3/10 11:47:48