N = int(input()) T = 1 c = 0 while T < N: T *= 2 c += 1 print(c)