Given a set of numbers, print them in the reversed order.
First lines containing the number of numbers n
Second line containing all the n numbers a1 a2 a3 . . . . an
A single line containing the numbers in the reversed order an an-1 an-2 . . . .a1
5
34 12 56 2 1
1 2 56 12 34
1 <= n <= 100000
0 <= ai <= 100000