PROGRAMMING:Inversion of array elements
Program to read 10 integers into the array, output in positive order, reset the array elements in reverse order, and then output.
###Input example:
```in
42 75 29 66 79 55 53 43 27 41
```
###Output example:
```out
42,75,29,66,79,55,53,43,27,41
41,27,43,53,55,79,66,29,75,42
```
answer:If there is no answer, please comment
###Input example:
```in
42 75 29 66 79 55 53 43 27 41
```
###Output example:
```out
42,75,29,66,79,55,53,43,27,41
41,27,43,53,55,79,66,29,75,42
```
answer:If there is no answer, please comment