#include <iostream>


int main() {
	double x = 0;
	for (int i = 0; i < 10; ++i)
		x += 0.1;
	std::cout << (x == 1);
}