public static void Main()
Console.WriteLine("BMI Calculator");
Console.WriteLine("Please enter height in inches here");
double Height = Convert.ToDouble(Console.ReadLine());
Console.WriteLine("Please enter weight in pounds here");
double Weight = Convert.ToDouble(Console.ReadLine());
Console.WriteLine("Your Body Mass Index is ");
double result = (703*Weight)/(Height*Height);
Console.WriteLine(Math.Round(result));
Console.WriteLine("You are underweight!");
Console.WriteLine("You are a healthy weight!");
Console.WriteLine("You are overweight!");