weight = float (input( "How heavy are you in kg? ")) height = float ( input( "Whats your height? ")) bmi = weight/height**2 print("your BMI is", bmi)