I'm trying to learn python and as a test i tried to make a BMI calculator
#BMI Calculator
name = raw_input ("What is your name?: ")
weight = raw_input ("Hello %s What is your weight? (kilo): "% (name))
height = raw_input ("And what is your height? (cm) ")
#Calculations: weight / height^2 * 10000
weight = int(weight)
height = int(height)
BMI = (weight / height ** 2) * 10000
print "%s, your BMI is %s"% (name, BMI)
But there seems to be something wrong with the calculations because i always end up with a BMI of 0? whats wrong?