public static void Main()
Console.WriteLine("Please Enter your height in inches: ");
height = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Enter your weight in pounds: ");
weight = Convert.ToInt32(Console.ReadLine());
bmi = (weight * 703)/(height * height);
if (bmi >= 18 && bmi <= 30 )
Console.WriteLine("Your BMI is {0}. Please follow the chart below to see if you are underweight, normal, overweight or obese.",bmi);
Console.WriteLine("\nUnderweight: less than 18.5\nNormal: between 18.5 and 24.9\nOverweight: between 25 and 29.9\nObese: 30 or greater.");