#include <stdio.h>main(){float a;scanf("%f",&a);printf("%.2f\n",a);while(a>9){a=a/10;}printf("%d",(int)a);
}