Problem A: 数组逆序
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:22
Solved:14
Description
给你n 个整数,将其逆序输出。
Input
第一行一个整数 ()代表数的个数。
第二行 个整数(空格隔开)(这些数在 之间)。
Output
n 个整数(空格隔开)。
Sample Input Copy
3
1 7 5
Sample Output Copy
5 7 1