Design a program that calculates a person's body mass index.? Design a modular program that calculates and display a person's body mass index (BMI). The BMI is often used to determine whether a person with a sedentary lifestyle is overweight for their height. A person's BMI is calculated with the following formula: BMI =Weight * 703/height2. Have the program display a message indicating whether the person has optimal weight, is underweight, or is overweight. A person's weight is considered to be optimal if his BMI is between 18.5 and 25. Less than 18.5 is underweight and over 25 is consider overweightDesign a program that calculates a person's body mass index.? Design a modular program that calculates and display a person's body mass index (BMI). The BMI is often used to determine whether a person with a sedentary lifestyle is overweight for their height. A person's BMI is calculated with the following formula: BMI =Weight * 703/height2. Have the program display a message indicating whether the person has optimal weight, is underweight, or is overweight. A person's weight is considered to be optimal if his BMI is between 18.5 and 25. Less than 18.5 is underweight and over 25 is consider overweight.