#2752. 【Python】 排序

【Python】 排序

题目描述

输入 33 个整数,从小到大排序后输出。

输入格式

三个整数,中间以空格隔开。

输出格式

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

样例

样例输入

20 7 33

样例输出

7 20 33