fun main(args : Array) { val S = readLine() ?: "" val a = S .map { (it - '0').toInt() } .map { if (it == 0) 10 else it } .sum() println(a) }