#include <iostream>
#include <iomanip>
using namespace std;

int main() {
	float test(0.2);
	cout << setprecision(20) << 1.8 + test << " " << boolalpha << (1.8 + test <= 2) << endl;
}