marks=int(input("enter the marks that you obtained: \n"))
if(marks>80):
    print("congrats! you obtained A grade")
elif (marks>60):
    print("congrats! you obtained B grade")
elif (marks>50):
    print("congrats! you obtained C grade")
else:
    print("oops!you got D grade. better luck next time")

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: