12103 - 将3个整数排序
Time Limit : 1 秒
Memory Limit : 128 MB
请将输入的3个整数按由小到大的顺序排序。
Input
三个整数 a b c
Output
3个整数按由小到大的顺序排列
Examples
Input
2 3 1
Output
1 2 3