Problem2179--格式化输出

2179: 格式化输出

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 88  Solved: 32
[Status] [Submit] [Creator:]

Description

输入一行若干个整数,将他们逆序输出。

Input

输入共一行,包含若干个整数,两两之间以一个空格分隔。每个整数均为不超过 1000 的正整数,整数个数不超过 1000 个。

Output

逆序输出一行整数,两两之间以一个空格分隔。

Sample Input Copy

10 20 30 40 50

Sample Output Copy

50 40 30 20 10

Source/Category

 python