#
# This program computes the BMI based on height and weight
#
# We will use metric values
#
# 1. Input
#
height=float(raw_input("Enter your height in meters    --> "))
weight=float1(raw_input("Enter your weight in kilograms --> "))
#
# 2. Computation
#
# BMI = (weight in kgs) / (height  height in meters)
#
BMI = weight / (height * height)
#
# 3. Print results
#
print "\n"
print "Your BMI is : ", BMI
print "\n"
