Body Mass Index

W= int(input(“your weight=”))
H= int(input(“your height=”))
BMI= W*703 / H**2

if 18.5<= BMI <=25 : print(“your body weight is optimal”)
elif BMI<18.5: print (“you are underweight”)
elif BMI>25: print (“you are overweight”)