using System; using System.Linq; using System.Collections.Generic; class Program { static void Main() { var eye = Console.ReadLine(); var mouth = Console.ReadLine(); Console.WriteLine($"({eye}{mouth}{eye})/"); } }