Reverse The Numbers

Given integer N followed by a list of N integers, print the N integers in reversed order.

NOTE: Do NOT print a space after the last number

Input Format:

In the first line only 1 integer N
In the second line, N integers separated by a space

Example 1

Input

5
1 2 3 4 5

Output

5 4 3 2 1

Notice how there is no space after the last number 1.

Example 2

Input

4
6 2 3 7

Output

7 3 2 6

Example 3

Input

6
6 5 4 3 2 1

Output

1 2 3 4 5 6

Test your solution here
when it passes, copy it and submit it here so your coach can grade it.