open System let read() = Console.ReadLine() let N = read() |> int Array.init N (fun _ -> read()) |> Array.iter (fun s -> printf "%s" s) printfn ""