/* Helloプログラム */

#include <stdio.h>
 
main()
{
	int test;
	int absent;
	
	test = 70;
	absent = 2;
	
	if ( (absent <= 3) && (test >= 60) ) {
		printf("合格！\n");
	} else {
		printf("不合格！\n");
	}
		
}