while(True) : 

    score = int(input("점수를 입력 해주세요 : "))

    if score >= 90 :
        print("수 입니다.")
    elif score >= 80 :
        print("우 입니다.")
    elif score >= 70 :
        print("미 입니다.")
    elif score >= 60 :
        print("양 입니다.")
    else :
        print("가 입니다.")