#include <iostream>
#include <iomanip> 

using namespace std;

int main() 
{
	float f = 1.2001f;
	//cout << setprecision (2) << f << endl;
	cout << std::fixed << setprecision (2) << f << endl;
	return 0;
}