#include <iostream>
using namespace std;

int main() {
	if( 5u > -1 )
	{
		cout << "true";
	}
	else
	{
		cout << "42";
	}
	return 0;
}