let inpt = Int(readLine()!)! var mul = 1 for i in 0..<32 { if mul >= inpt { print(i) break } mul *= 2 }