PROGRAMMING:Store the elements in the array in reverse order
Define an integer array with a length of 10, assign values to it from the keyboard, and then store the elements in the array in reverse order. In operation, only one temporary storage unit can be used instead of opening up additional array space.
###Input format:
Give 10 integers in a row, separated by spaces.
###Output format:
Output 10 integers in reverse order, and the width of each data output is 5 columns.
###Input example:
Here is a set of inputs. For example:
```in
5 -3 6 7 8 -123 45 8 9 60
```
###Output example:
The corresponding output is given here. For example:
```out
60 9 8 45 -123 8 7 6 -3 5
```
answer:If there is no answer, please comment
###Input format:
Give 10 integers in a row, separated by spaces.
###Output format:
Output 10 integers in reverse order, and the width of each data output is 5 columns.
###Input example:
Here is a set of inputs. For example:
```in
5 -3 6 7 8 -123 45 8 9 60
```
###Output example:
The corresponding output is given here. For example:
```out
60 9 8 45 -123 8 7 6 -3 5
```
answer:If there is no answer, please comment