#include<stdio.h> void main() { int a,b,c,temp; scanf("%d %d %d",&a,&b,&c); if(a>b) { temp=a; a=b; b=temp; } else if(a>c) { temp=a; a=c; c=temp; } else if(b>c) { temp=b; b=c; c=temp; } printf("%d %d %d",a,b,c); }