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