/* Helloプログラム */

#include <stdio.h>

main() {
    int test;

    test = 70;

    if (test >= 80) {

        if (test >= 90) {
            printf("秀\n");
        }
    } else {
        printf("優\n");
    }
    if (test >= 60) {
        if (test >= 70) {
            printf("良\n");
        } else {
            printf("可\n");
        }
    } else {
        printf("不可\n");
    }
}