fun test(n: Int): String { var res: String if (n == 1) { println("***") res = "one" } else { println("***") res = "two" } return res }