1682: 读入n个数将其反向输出

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:7 Solved:6

Description

已知n个数,把这n个数倒过来输出。
输入:第一行为n,第二行为n个数
输出:把n个数倒过来输出(数之间用一个空格隔开)

Input

4
1 2 5 3

Output

3 5 2 1

Sample Input Copy

5
45 12 34 89 21

Sample Output Copy

21 89 34 12 45

HINT