I'm getting an error while running the code
#script to calculate the BMI of a person
print ("Enter your heights in meters")
height = float(raw_input())
print ("Enter your Weight in Kilograms")
weight = float(raw_input())
BMI = weight/(height*height)
print (BMI)