#include <stdio.h>

int main()
{
	volatile int a = 3000000000;
	volatile int b = 0;
	printf("%s\n", (a < b ? "true" : "false"));
	return 0;
}
