PROGRAMMING:6-1 output n integers in reverse order
6-1 input a positive integer n, and then input n integers, and save them in array A. output these n numbers in reverse order, and output them in N lines.
###Input format:
Enter a positive integer n in the first line; Then enter n integers in the second line, separated by spaces.
###Output format:
Output n integers in n rows.
###Input example:
Here is a set of inputs. For example:
```in
three
0 1 2
```
###Output example:
The corresponding output is given here. For example:
```out
two
one
0
```
answer:If there is no answer, please comment
###Input format:
Enter a positive integer n in the first line; Then enter n integers in the second line, separated by spaces.
###Output format:
Output n integers in n rows.
###Input example:
Here is a set of inputs. For example:
```in
three
0 1 2
```
###Output example:
The corresponding output is given here. For example:
```out
two
one
0
```
answer:If there is no answer, please comment