public static void Main()
Console.WriteLine("Hello, What is your first name? ");
string firstName = Console.ReadLine();
Console.WriteLine("Surname? ");
string surname = Console.ReadLine();
Console.WriteLine("Nice name! And in what year were you born? ");
string yOB = Console.ReadLine();
int intYOB = Convert.ToInt32(yOB);
Console.WriteLine("Really? That old!? Haha just kidding, has your birthday already been this year? ");
string passed = Console.ReadLine();
Console.Write("Your name is ");
Console.Write(firstName + " " + surname + " and you are ");
Console.Write(yearNow - intYOB + " years old :)");
Console.Write(firstName + " " + surname + " and you are ");
Console.Write(yearNow - intYOB - 1 + " years old :)");