#include <iostream>
using namespace std;

int main() {
	
	if(sizeof(int) > -1)	{
		cout << "True" << endl;
	}
	else	{
		cout << "False" << endl;
	}
	
	return 0;
}