#include<bits/stdc++.h> using namespace std; int main() { int a,b,c,t; cin>>a>>b>>c; if(a<b) {t=a;a=b;b=t;} if(a<c) {t=c;c=a;a=t;} if(b<c) {t=b;b=c;c=t;} cout<<a<<" "<<b<<" "<<c; return 0; } /************************************************************** Problem: 1040 User: ccf Language: C++ Result: Accepted Time:19 ms Memory:2072 kb ****************************************************************/