#include <iostream>
using namespace std;

int main() {
	std::cout << (2.2 * 3 == 3.3 * 2) << std::endl;
	return 0;
}