public static void Main()
Console.WriteLine("Body Mass index Calculator");
Console.WriteLine("Enter Height (Inches):");
double I = Convert.ToDouble(Console.ReadLine());
Console.WriteLine("Enter Weight (Lbs)");
double P = Convert.ToDouble(Console.ReadLine());
double BMI = Math.Round(P*703/Math.Pow(I,2),0);
Console.WriteLine("Your Body Mass Index");
Console.WriteLine("Congradulations! Your BMI is Healthy. A healthy BMI is between 19 and 24. Keep up the good work");
Console.WriteLine("Oh No. Your BMI is Unhealthy. A healthy BMI is between 19 and 24. Keep trying.");