/* Helloプログラム */

#include <stdio.h>
#include <stdbool.h>
 
main()
{
	int b;
	int absent;
	int test;
	
	absent = 3;
	test = 60;
	
	b = ( ( absent <= 3 ) && ( test >= 60 ) );
	printf("%d\n", b);
}