PROGRAMMING:Turn back
Physical education is about to start. Before physical education, it is essential to form a whole team. At the beginning, the whole class formed a column according to their height, but unfortunately, the students all turned their backs to the PE teacher. At this time, the PE teacher took a deep breath and yelled: "turn back!"
Xiao Zhou is a little program ape. Seeing such a scene, he can't help thinking of a question. Suppose that before the teacher yells slogans, the monitor has faced the first student in the column and recorded each student's student number in order. Then, what's the order of student number after the teacher yells and calls?
###Input format:
The first line contains a number n, which means that there are n students in the class, and the class size is at least 1, not more than 100. The second line contains n numbers, representing the student number of each student.
###Output format:
Please output the student number of each student in order, separated by spaces.
###Input example:
```in
five
3 1 5 4 2
```
###Output example:
```out
2 4 5 1 3
```
answer:If there is no answer, please comment
Xiao Zhou is a little program ape. Seeing such a scene, he can't help thinking of a question. Suppose that before the teacher yells slogans, the monitor has faced the first student in the column and recorded each student's student number in order. Then, what's the order of student number after the teacher yells and calls?
###Input format:
The first line contains a number n, which means that there are n students in the class, and the class size is at least 1, not more than 100. The second line contains n numbers, representing the student number of each student.
###Output format:
Please output the student number of each student in order, separated by spaces.
###Input example:
```in
five
3 1 5 4 2
```
###Output example:
```out
2 4 5 1 3
```
answer:If there is no answer, please comment