#D4121. Reversing Numbers

    ID: 3426 Type: Default 1000ms 134MiB

Reversing Numbers

Reversing Numbers

Write a program which reads a sequence and prints it in the reverse order.

Note

解説

Constraints

  • n ≤ 100
  • 0 ≤ ai < 1000

Input

The input is given in the following format:

n a1 a2 . . . an

n is the size of the sequence and ai is the ith element of the sequence.

Output

Print the reversed sequence in a line. Print a single space character between adjacent elements (Note that your program should not put a space character after the last element).

Examples

Input

5 1 2 3 4 5

Output

5 4 3 2 1

Input

8 3 3 4 4 5 8 7 9

Output

9 7 8 5 4 4 3 3

inputFormat

Input

The input is given in the following format:

n a1 a2 . . . an

n is the size of the sequence and ai is the ith element of the sequence.

outputFormat

Output

Print the reversed sequence in a line. Print a single space character between adjacent elements (Note that your program should not put a space character after the last element).

Examples

Input

5 1 2 3 4 5

Output

5 4 3 2 1

Input

8 3 3 4 4 5 8 7 9

Output

9 7 8 5 4 4 3 3

样例

8
3 3 4 4 5 8 7 9
9 7 8 5 4 4 3 3