import * as fs from 'fs'; const input = fs.readFileSync('/dev/stdin', 'utf8'); const nlarray = input.split('\n'); let N = parseInt(nlarray[0]); let result = ' '; for (let i = 1; i < N + 1; i++) { result = result + nlarray[i]; } console.log(result);