using System;
public class Program
{
public static void Main()
var firstN = Console.ReadLine();
var lastN = Console.ReadLine();
var age = Console.ReadLine();
var town = Console.ReadLine();
//
Console.WriteLine("You are {0} {1}, a {2}-years old person from {3}.", firstN, lastN, age, town);
}