public static void Main(string[]args)
Console.WriteLine("What is your name?");
string name = Console.ReadLine();
Console.WriteLine("Your age please. Only type in numbers such as 12 or 32, please do not write your age in letter such as twenty or fourteen, thanks :)");
int age = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Ok, your age is "+ age);
Console.WriteLine("Now I will ask for your height please. Only type in numbers again. I am asking for your height in feet and inches, for example, Michael is 5.7 meaning 5 feet and 7 inches tall. Hope you understood :)");
double height = Convert.ToDouble(Console.ReadLine());
Console.WriteLine("You are shorter than 10 feet");
Console.WriteLine("Ok. Moving on, now I tell you whether you like this subject or not.");
Console.WriteLine("Calculating results");
Console.WriteLine("Does " + name + " like this subject: " + isStudent);