#P1137. 三个数从小到大排序

三个数从小到大排序

现在要写一个程序,实现给三个数排序的功能

Input

输入三个正整数

Output

给输入的三个正整数排序

Sample Input

20 7 33

Sample Output

7 20 33

HINT

Source