import ex3lib def main(): height = float(input('What is your height (in inches)? ')) weight = float(input('What is your weight (in lbs)? ')) bmi = ex3lib.compute_bmi(weight, height) print('Your BMI is: ' + str(bmi)) print('Your BMI classification is: ' + ex3lib.assess_bmi(bmi)) main()