/*
2022年3月29日14点26分
输入三个整数x,y,z,把这三个数由小到大输出。
*/

#include <iostream>
using namespace std;

int main()
{
    int x, y, z;
    cout << "请依次输入三个整数,用空格隔开" << endl;
    cin >> x >> y >> z;
    if (x < y)
    {
        if (x < z)
        {
            cout << x << " ";
            if (y < z) cout << y << " " << z << endl;
            else cout << z << " " << y << endl;
        }
        else cout << z << " " << x << " " << y << endl;
    }
    else
    {
        if (y < z)
        {
            cout << y << " ";
            if (x < z) cout << x << " " << z << endl;
            else cout << z << " " << x << endl;
        }
        else cout << z << " " << y << " " << x << endl;
    }
    return 0;
}