fun main() { val builder = StringBuilder() val n = readInputLine().toInt() var ans = 0 var current = 1 while (current < n) { ans++ current *= 2 } builder.appendln(ans) print(builder.toString()) } fun readInputLine(): String { return readLine()!! }