kozhuhar.kirill
fun main(arr: Array<String>) { var b: Int? = null listOf("a", "b", "c").forEach { b?.let { println("${b + 1}") } } }