#include<stdio.h>
int main()

{
float weight;
scanf("%f",&weight);
printf("%00.1f ",weight);
return 0;
}