using System;
public class Program
{
public static void Main()
string name = "Boris";
int age = 18;
string town = "Plovdiv";
Console.Write(
"{0} is {1} years old from {2}!\n", name, age, town);
}