n = gets.to_i a = 1 b = 0 while n > 2 n = n / 2 b += 1 end p b + 1