Print array 2
Execution time limit is 1 second
Runtime memory usage limit is 128 megabytes
Array of n integers is given. Print all its elements in one row, reversing the original order.
Input
First line contains number n (1 ≤ n ≤ 100). Next n lines contains the array elements (one integer in each line), each no more than 100 by absolute value.
Output
Print the elements of array in one line in reverse order.
Examples
Input #1
Answer #1
Submissions 18K
Acceptance rate 47%