Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # Don't change the code below
- height = input("enter your height in cm: ")
- weight = input("enter your weight in kg: ")
- # Don't change the code above
- #Write your code below this line
- kgs = float(weight)
- cms = float(height)
- bmi = (kgs / cms / cms) * 10000
- print(
- int(bmi)
- )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement