N = int(input()) bis = 1 ans = 0 while bis <= N: bis *= 2 ans += 1 print(ans)