N = int(input()) for i in range(1, 100): if N <= 2 ** i: print(i) break