#396. 倒序输出

倒序输出

No submission language available for this problem.

Background

Special for beginners, ^_^

Description

已知 n (1<=n<=100)个数,把这 n 个数倒过来输出。

Format

Input

第一行为 n, 第二行为 n 个数

Output

把 n 个数倒过来输出(数之间用一个空格隔开)

Samples

4
1 2 5 3
3 5 2 1

Limitation

1s, 1024KiB for each test case.