/* Helloプログラム */

#include <stdio.h>
 
main()
{	
	int test;
	
	test = 80;
	
	if(test >= 60) {
		
		if (test >= 90) {
			printf("秀");
		} else {
	}	
		if (test >= 80) {
			printf("優\n");
		} else {
		if (test < 70) {
			printf("良");
		} else {
			printf("可");
		    }
		}
	} else {
		printf("不可\n");
	}
}