if 1>0: A=float(input("Please Enter your height in centimeters; for example:166")) B=float(input("Please Enter your weight in kilograms; for example:55")) X=(A/100)**2 if B/X<18: print('your BMI is very low!!') if B/X>24: print('your BMI is very high!!') if B/X>18 and B/X<24: print('your BMI is normal!')