public static void Main()
Console.WriteLine("Въведете име: ");
string firstname = Console.ReadLine();
Console.WriteLine("Въведете фамилия: ");
string lastname = Console.ReadLine();
Console.WriteLine("Въведете възраст ");
string age = Console.ReadLine();
Console.WriteLine("Въведете град: ");
string town = Console.ReadLine();
Console.WriteLine("You are " + firstname + lastname + "a " + age + " years old person from " + town + " .");