using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace yukicoderTest { class Program { static void Main(string[] args) { string eye = Console.ReadLine(); string mouth = Console.ReadLine(); Console.WriteLine("(" + eye + mouth + eye + ")/"); } } }