Problem AY: 【一维数组】【入门】倒序问题

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:532 Solved:273

Description

输入n (n<=100) 个数,要求程序按输入时的逆序把这n个数打印出来(也就是,按输入相反顺序打印这n个数)

Input

输入n个整数

Output

将n个数倒序输出

Sample Input Copy

5
3 6 4 10 5

Sample Output Copy

5 10 4 6 3