#include<cstdio>
#include<iostream>
#include<cstring>
using namespace std;
int main()
{
char a[1000],b[1000],c[1000],d[1000];
cin>>a;
cin>>b;
cin>>c;
char *p1,*p2,*p3,*p4;
p1=a;
p2=b;
p3=c;
p4=d;
if(strcmp(p1,p2)>0)
{
strcpy(p4,p2);
strcpy(p2,p1);
strcpy(p1,p4);
}
if(strcmp(p1,p3)>0)
{
strcpy(p4,p3);
strcpy(p3,p1);
strcpy(p1,p4);
}
if(strcmp(p2,p3)>0)
{
strcpy(p4,p3);
strcpy(p3,p2);
strcpy(p2,p4);
}
printf("%s %s %s",a,b,c);
return 0;
}