BMI Calculator

PHOTO EMBED

Mon Sep 25 2023 18:59:59 GMT+0000 (Coordinated Universal Time)

Saved by @Duhita0209

print("Welcome to BMI calculator")

weight = float(input("Please enter your weight in kg:\n"))
height = float(input("Please enter your height in m:\n"))
BMI = weight / height ** 2
new_BMI = int(BMI)
print(f"Your BMI is {new_BMI}")
content_copyCOPY