#include <iostream>
using namespace std;

int main() {

	float num =1;
	cout<<!(num/0);

	return 0;

}