-->

# program to calculate students grading - python | python

 # program to calculate students grading - python | python

# program to calculate students grading
for i in range(0,100):
    grade = float(input("what is the grade percentage"))
    if grade >=90:
        print("you got A+")
    elif 80<=grade<90:
        print("you got A")
    elif 60<=grade<80:
        print("you got A-")
    else:
        print("you are fail")


# program to calculate students grading - python | python