fun main(args:Array){ val ans = readLine()!!.split(",").map { x -> x.toInt() }.filter { x -> x%2 == 1 }.map { x -> x*x }.toList() println(ans) }