#1073. 一维数组模板1

一维数组模板1

Background

Special for beginners, ^_^

Description

输入n个数,请按照输入的逆序顺序进行n个数的输出。如输入的顺序为8,6,5,4,1。输出顺序为1,4,5,6,8。

Format

Input

输入一个整数n代表输入数的个数,接下来输入n个正整数。

Output

按照输入的顺序进行n个数的逆序输出

Samples

5
8 6 5 4 1
1 4 5 6 8

Limitation

0<=n<=1000,输入的正整数在int的数据范围内。