import kotlin.math.ceil import kotlin.math.log2 fun main(args: Array) { p89() } fun p89() { val n = readLine()!!.toDouble() val answer = ceil(log2(n)).toInt() println(answer) }