Problem R: 【分支结构】三个整数a,b,c从小到大排序

Problem R: 【分支结构】三个整数a,b,c从小到大排序

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 1954  Solved: 1250
[Submit] [Status] [Web Board] [Creator:]

Description

输入三个整数a,b,c;按照从小到大次序输出。 

Sample Input Copy

1 2 3
3 2 1
6 6 6
100 10 1

Sample Output Copy

1 2 3
1 2 3
6 6 6
1 10 100