#include <iostream>
using namespace std;

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