import strutils proc readLine: auto = readLine(stdin) var ans = "" let N = readLine().parseInt for i in 0 ..< N: ans.add readLine() echo ans