The code will calculate the body mass index of the user. The user enters their height in meters and their weight in kilograms. The body mass index is then determined to be 16.6.
# Work Out Body Mass Index
height = input("enter your height in m: ")
weight = input("enter your weight in kg: ")
bmi = int(weight) / float(height) **2
bmi_as_int = int(bmi)
print(bmi_as_int)