You have unsaved changes
Python
b = float(input("Enter boards percentage:"))
m = int(input("Enter MET score:"))
if b<=100 and b>=95:
    b = 100
elif b<95 and b>=90:
    b = 95
elif b<90 and b>=85:
    b = 90
elif b<85 and b>=80:
    b = 85
elif b<80 and b>=75:
    b = 80
elif b<75 and b>=70:
    b = 75
elif b<70 and b>=65:
    b = 70
elif b<65 and b>=60:
    b = 65
elif b<60 and b>=55:
    b = 60
elif b<55 and b>=50:
    b = 55
else:
    print("NOT ELIGIBLE FOR MANIPAL")
print(f"Your MET band score is: {((b*50)+(m/240)*5000)/100}")
Your MET band score is: 76.25