public static void Main()
Console.WriteLine("What is your name?");
vName=Console.ReadLine();
Console.WriteLine("When were you born?");
vDateOfBirth=Console.ReadLine();
Console.WriteLine("Where were you born?");
vCountryOfBirth=Console.ReadLine();
Console.WriteLine("Hello " +vName + ". You were born on the " +vDateOfBirth + " in " +vCountryOfBirth +", Its nice to meet you");