Grades of student

 Grades of student 


    m=float(input())

    if(m>85):

        print("A")

    elif(m>70 and m<=85):

        print("B")

    elif(m>=60 and m<=70):

        print("C")

    else:

        print("F")

    


    


Comments