PROGRAMMING:Reverse order
The one-dimensional array composed of N integers is re stored and output in reverse order (n < 10).
###Input format:
The first line gives a positive integer n of no more than 10. The second line gives n integers separated by spaces.
Output format:
Output n integers in reverse order on one line. Each number output takes up 4 columns.
###Input example:
```in
five
7 6 5 8 1
```
###Output example:
```out
1 8 5 6 7
```
answer:If there is no answer, please comment
###Input format:
The first line gives a positive integer n of no more than 10. The second line gives n integers separated by spaces.
Output format:
Output n integers in reverse order on one line. Each number output takes up 4 columns.
###Input example:
```in
five
7 6 5 8 1
```
###Output example:
```out
1 8 5 6 7
```
answer:If there is no answer, please comment