using System; using System.Collections.Generic; using System.IO; using System.Linq; namespace yukicore { class Program { private static void Main() { //no597 List rtn=new List(); Console.ReadLine(); while (true) { char[] str = Console.ReadLine()?.ToCharArray(); if (str.Length==0) break; rtn.AddRange(str); } Console.WriteLine(new string(rtn.ToArray())); } } }