Console.WriteLine("BMI calculator")
Console.WriteLine("Please note that BMI calculations may or may")
Console.writeLine("not represent your physique accurately")
Console.WriteLine("Please enter your mass in kilograms")
weight=Console.ReadLine()
Console.WriteLine("Please enter your height in metres")
height=Console.ReadLine()
bmi=weight/(height*height)
Console.WriteLine("Your BMI is currently " & bmi & "kg/m3")
Console.WriteLine("You are currently " & status)