public static void Main()
Console.WriteLine("What is your name?");
string Name = Console.ReadLine();
Console.WriteLine("Hello {0}, nice to meet you", Name);
Console.WriteLine("How old are you?");
string Age = Console.ReadLine();
Console.WriteLine("Well I'm a couple of minutes old");
Console.WriteLine("Well what do you like doing?");
string Hobby = Console.ReadLine();
Console.WriteLine("That's perfect! I like {0} too", Hobby);
Console.WriteLine("Well, I should be going");
Console.WriteLine("What time should we meet up?");
string Time = Console.ReadLine();
Console.WriteLine("Very well. Let’s meet up at {0} tomorrow.", Time);
string Concluding_Pleasantries = Console.ReadLine();
Console.WriteLine("Bye to you too.");