n = int(input()) t = 1 i = 0 while t < n: t *= 2 i += 1 print(i)