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