public static void Main(string[] args)
string firstName = Console.ReadLine();
string lastName = Console.ReadLine();
int age = int.Parse(Console.ReadLine());
string town = Console.ReadLine();
Console.WriteLine($"You are {firstName} {lastName}, a {age}- years old from{town}.");