PROGRAMMING:Store the data in the array in reverse order and output the specified elements
This problem requires the preparation of procedures, the given n integers into the array, the array of N numbers in reverse order, and then output the specified array elements.
###Input format:
In the first line, give a positive integer n (1 ≤ n ≤ 10). Enter n integers in the second line, separated by spaces. In the third line, enter a non negative integer m (m < n).
###Output format:
Output the array elements with m subscript in reverse order in one line. There are no spaces at the end of the line.
###Input example:
```in
six
10 8 1 2 3 4
two
```
###Output example:
```out
two
```
answer:If there is no answer, please comment
###Input format:
In the first line, give a positive integer n (1 ≤ n ≤ 10). Enter n integers in the second line, separated by spaces. In the third line, enter a non negative integer m (m < n).
###Output format:
Output the array elements with m subscript in reverse order in one line. There are no spaces at the end of the line.
###Input example:
```in
six
10 8 1 2 3 4
two
```
###Output example:
```out
two
```
answer:If there is no answer, please comment