#abc284a. A - Sequence of Strings
A - Sequence of Strings
Score : points
问题描述
你将按照顺序获得 个字符串 。
请按照 的顺序打印这些字符串。
以上为通义千问 qwen-max 翻译,仅供参考。
Problem Statement
You are given strings in this order.
Print in this order.
Constraints
- is an integer.
- is a string of length between and , inclusive, consisting of lowercase English letters, uppercase English letters, and digits.
Input
The input is given from Standard Input in the following format:
Output
Print lines. The -th line should contain .
Sample Input 1
3
Takahashi
Aoki
Snuke
Sample Output 1
Snuke
Aoki
Takahashi
We have , Takahashi
, Aoki
, and Snuke
.
Thus, you should print Snuke
, Aoki
, and Takahashi
in this order.
Sample Input 2
4
2023
Year
New
Happy
Sample Output 2
Happy
New
Year
2023
The given strings may contain digits.
update @ 2024/3/10 11:53:26