fun main() { val (a,b,c) = readLine()!!.split(" ").map{it.toLong()} val x = a * b * c println("$x $x $x") }