Console.WriteLine(" CALCULO DE INDICE DE MASA CORPORAL ")
Console.WriteLine (" Ingrese su peso en Libras ")
peso = Console.ReadLine()
Console.WriteLine (" Ingrese su estatura ")
estatura = Console.ReadLine()
imc = kg / (estatura * estatura)
Console.WriteLine (" Su indice de masa corporal es: " &imc )
Console.WriteLine("Ingrese edad: ")
edad = Console.ReadLine()
if edad >20 and edad <= 65
Console.WriteLine("Bajo Peso")
if imc > 10 and imc<=85 then
Console.WriteLine("Peso Normal")
if imc > 85 and imc <= 95 then
Console.WriteLine("Sobre peso")
Console.WriteLine("Obesidad")