N = int(input()) score = 0 k = 1 while k < N: k *= 2 score += 1 print(score)