public static void Main()
Console.Write("Въведи име: ");
string firstName = Console.ReadLine();
Console.Write("Въведи фамилия: ");
string lastName = Console.ReadLine();
Console.Write("Въведи години: ");
int age = int.Parse(Console.ReadLine());
Console.Write("Въведи град: ");
string town = Console.ReadLine();
Console.WriteLine("You are {0} {1}, a {2}-years old person from {3}.", firstName, lastName, age, town);