ShriRam Changed status to publish August 17, 2023
Math = int(input(“Marks obtained in Maths out of 100 “))
Physics = int(input(“Marks obtained in Physics out of 100 “))
Chemistry = int(input(“Marks obtained in Chemistry out of 100 “))
Per = (Math+Physics+Chemistry)/3
if(Per >= 60):
Division = “First Division”
elif(Per >= 50):
Division = “Second Division”
elif(Per >= 33):
Division = “Third Division”
else:
Division = “Fail”
print (Division)
ShriRam Changed status to publish August 17, 2023