public static void Main()
Console.WriteLine("What's your first name?");
string aaa = Console.ReadLine();
Console.WriteLine("Last name?");
string bbb = Console.ReadLine();
Console.WriteLine("Age?");
string ccc = Console.ReadLine();
Console.WriteLine("And town?");
string ddd = Console.ReadLine();
Console.WriteLine("You are " + aaa + " " + bbb + ", a " + ccc + " year old person from " + ddd + ".");