/* Helloプログラム */

#include <stdio.h>
#include <stdbool.h>
 
main()
{
	int b;
	b = (2 > 1);
	printf("%d\n", b);
}