Problem4522--三数排序

4522: 三数排序

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

Description

给定三个整数,请以从小到大的顺序输出。

Input

  • 三个整数:lns="http://www.w3.org/1998/Math/MathML">alns="http://www.w3.org/1998/Math/MathML">blns="http://www.w3.org/1998/Math/MathML">c



Output

  • 三个整数:在一行内,数字之间用单个空格分隔。

Sample Input Copy

6 4 2

Sample Output Copy

2 4 6

Source/Category