1704: 【一维数组】逆序打印(例题)

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:51 Solved:16

Description

        例5.1    输入n个数,要求程序按输入时的逆序把这n个数打印出来,已知整数不超过100个。也就是说,按输入相反顺序打印这n个数。
 

Input

一行,n个用空格分隔的整数。
 

Output

按输入时的逆序输出n个整数。
 

Sample Input Copy

1 2 3 4 5 6 7 8 9 10

Sample Output Copy

10 9 8 7 6 5 4 3 2 1