1885: 【数组】倒序输出

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:32 Solved:25

Description

输入n个整数,将其倒序输出。

    

    



Input

第1行,n。

Output

第2行,n个整数。

Sample Input Copy

6
4 8 7 3 12 6

Sample Output Copy

6 12 3 7 8 4