Problem1532--中级第七课——数组练习三

1532: 中级第七课——数组练习三

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 178  Solved: 103
[Status] [Submit] [Creator:]

Description

请编写一个程序,用数组输入N个整数,然后再倒序输出N个整数。(N<1000)

Input

 两行
第一行,n
第二行,n个整数

Output

一行,n个整数

Sample Input Copy

3
23 43 12

Sample Output Copy

12 43 23

Source/Category