#include <iostream>
#include <iomanip>

int main()
{
	float f = 4.14;
	f -= 0.01;
	f -= 0.01;
	std::cout << std::boolalpha << (f == 4.12f) << '\n';
}