Problem1046--Sorting three numbers

1046: Sorting three numbers

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

Description

Write a program which reads three integers, and prints them in ascending order.

Input

Print the given integers in ascending order in a line. Put a single space between two integers.

Output

Print the given integers in ascending order in a line. Put a single space between two integers.


Sample Input Copy

3 8 1

Sample Output Copy

1 3 8

Source/Category