/* Helloプログラム */

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