#include <stdio.h>
main(){
double x[10],t;
int i,j;
printf("please input 10 data\n");
for (i=0;i<10;i++)scanf("%lf",&x[i]);
for (i=0;i<9;i++)
for (j=i+1;j<10;j++){
if (x[i]>x[j]){
t = x[i];x[i]=x[j];x[j]=t;
}
}
for (i=0;i<10;i++) printf("%g ",x[i]);
return 0;
}