Problem B: 一维-数组元素逆序输出

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

Description

输入一个正整数 n(n≤10),再输入 n 个整数存入一维数组,将数组元素逆序后输出。

Input

输入数组长度 n(正整数)

Output

输入 n 个整数,用空格分隔

Sample Input Copy

4
10 20 30 40

Sample Output Copy

40 30 20 10

HINT

0 ≤ 数值 ≤ 100