PROGRAMMING:Invert 10 array elements and output
Keyboard input 10 numbers into the one-dimensional array, the programming will be inverted before and after the values are re stored in the array and output.
###Input format:
Enter 10 integers separated by spaces.
###Output format:
Output inverted array element values, data separated by commas, that is, each data followed by a comma.
###Input example:
```in
9 8 7 6 5 4 3 2 1 0
```
###Output example:
```out
zero, one, two, three, four, five, six, seven, eight, nine,
```
answer:If there is no answer, please comment
###Input format:
Enter 10 integers separated by spaces.
###Output format:
Output inverted array element values, data separated by commas, that is, each data followed by a comma.
###Input example:
```in
9 8 7 6 5 4 3 2 1 0
```
###Output example:
```out
zero, one, two, three, four, five, six, seven, eight, nine,
```
answer:If there is no answer, please comment