#include <iostream>
#include <cmath>
#include <climits>
using namespace std;

int main() {
	cout << (abs(INT_MIN) == INT_MIN);
	
	// your code goes here
	return 0;
}