fun main(args: Array) { val n = readLine()!!.toInt() repeat(n) { println("Hello! You're new here, right? It's nice to meet you.") } }