N = int(input()) cnt = 0 Biscuit = 1 for cnt in range (0, 10**8): if Biscuit >= N: print(cnt) break else: Biscuit = Biscuit*2