1241: 排序

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:353 Solved:148

Description

给定三个正整数 $a、b$ 和 $c$,将它们从小到大输出。

Input

第一行,包含 $3$ 个正整数 $a、b$ 和 $c$,中间以空格隔开。

Output

将三个正整数从小到大输出,中间以空格隔开。

Sample Input Copy

3 1 2

Sample Output Copy

1 2 3

HINT

数据范围:

$1\le a,b,c \le 1000$。

Source/Category