nikolaymetchev
fun f(int : Int?) : String? = when(int) { null -> null else -> "answer = ${int.plus(3)}" }