#include <stdio.h>

int main(void) {
	// your code goes here
    float b;
    double db;
    scanf("%f",&b);
    printf("b=%.2f\n",b);
   
	return 0;
}
