#includeint main(){ double a, b; scanf("%lf %lf", &a, &b); if(a>b){ printf("%lf %lf\r\n", a, b); }else{ printf("%lf %lf\r\n", b,a,); } return 0;}