Problem1396--printf格式化输出(5)

1396: printf格式化输出(5)

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MiB

Description

读入5个整数a b c d e,并倒序输出这5个整数。比如输入 1 2 3 4 5,则输出5 4 3 2 1,输出结果之间用空格隔开。

Input

一行5个数字,分别表示5个输入数据。

Output

一行,表示结果。

Sample Input Copy

1 2 3 4 5

Sample Output Copy

5 4 3 2 1

Source/Category