height_ft_in=input("Enter height in feet here: ") height_ft_in=int(height_ft_in) height_in_in=input("Enter the remaining height in inches here: ") height_in_int=(height_in_in) weight_in=input("Enter your weight here: ") weight_in=int(weight_in) height_ft_in=height_ft_in*12 height=height_ft_in=height_ft_in height=height*2.54/100 weight=weight_in*.453592 bmi=weight/height**2 bmi=bmi/100*100 print("-----------------------") print("Your BMI is" ,bmi)