#1062. Long Long

Long Long

题目描述

AA longlong longlong timetime ago,ago, therethere isis aa ArrayArray andand aa child.child. TheThe childchild likeslikes playingplaying withwith thethe Array.Array.WhyWhy longlong longlong ago?ago? becausebecause youyou mustmust useuse aa longlong longlong toto storestore thethe timetime interval.interval.

给你一个包含 nn 个正整数的数组,你需要将这个数组倒序输出。

输入格式

第一行包含一个整数 nn1n2×1061 \le n \le 2 \times 10^6)。 第二行共有 nn 个整数 a1,a2,,ana_1,a_2,\ldots,a_n1ai10181 \le a_i \le 10^{18})。

输出格式

倒序输出数组,用空格分割。

龙龙?

样例

样例输入1

5
1 2 3 4 5

样例输出1

5 4 3 2 1

样例输入2

1
6

样例输出2

6