/* Helloプログラム */

#include <stdio.h>
#include <stdbool.h>

main()
{
	int absent, test, flag;
	
	absent = 2;
	test = 70;
	
	flag = ((absent <=3)&&(test>=60));
	

	printf("結果%d", flag); //結果表示1:合格, 0:不合格

}