Skip to content

Instantly share code, notes, and snippets.

@amankharwal
Created December 21, 2020 03:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amankharwal/02558955f73d920d183ec31c68d1a845 to your computer and use it in GitHub Desktop.
Save amankharwal/02558955f73d920d183ec31c68d1a845 to your computer and use it in GitHub Desktop.
Height=float(input("Enter your height in centimeters: "))
Weight=float(input("Enter your Weight in Kg: "))
Height = Height/100
BMI=Weight/(Height*Height)
print("your Body Mass Index is: ",BMI)
if(BMI>0):
if(BMI<=16):
print("you are severely underweight")
elif(BMI<=18.5):
print("you are underweight")
elif(BMI<=25):
print("you are Healthy")
elif(BMI<=30):
print("you are overweight")
else: print("you are severely overweight")
else:("enter valid details")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment