Skip to main content

Python program to calculate BMI

  

Program to find BMI(body  mass index )

    Input:

        60
        5.1
   Output: 
        BMI index is 23.53

      Code:

                  h=int(input())
                  w=int(input())
                  x=w/h*2
                  print("BMI index is ",x)
    

Note:
    Hello Guys, Don't Stop Learning keep Going..............