#abc344b. B - Delimiter
B - Delimiter
Score: points
问题描述
你将获得 个整数 ,每行一个,分布在 行中。但是,输入中并未给出 的值。
此外,以下条件得到保证:
- (对于 )
按照这个顺序打印 。
以上为通义千问 qwen-max 翻译,仅供参考。
Problem Statement
You are given integers , one per line, over lines. However, is not given in the input.
Furthermore, the following is guaranteed:
- ( )
Print in this order.
Constraints
- All input values are integers.
- ( )
Input
The input is given from Standard Input in the following format:
Output
Print in this order, as integers, separated by newlines.
Sample Input 1
3
2
1
0
Sample Output 1
0
1
2
3
Note again that is not given in the input. Here, and .
Sample Input 2
0
Sample Output 2
0
.
Sample Input 3
123
456
789
987
654
321
0
Sample Output 3
0
321
654
987
789
456
123