#include <iostream>

int main()
{
	std::cout << (0.1 + 0.2 > 0.3) << '\n';
	std::cout << (0.3 * 0.3 < 0.9) << '\n';
}