Initial order
Execution time limit is 1 second
Runtime memory usage limit is 128 megabytes
Array of n integers is given to the program input in reverse order - that is, in order from the last to the first element. Restore the original order of the elements in the array.
Input
The first line contains a positive integer n. The next line contains n integers. All numbers do not exceed 100 by absolute value.
Output
Print the elements of the array in one line, restoring the original order of its elements.
Examples
Input #1
Answer #1
Submissions 5K
Acceptance rate 67%