def I(): return input() def IS(): return input().split() def II(): return int(input()) def IIS(): return map(int,input().split()) def LIIS(): return list(map(int,input().split())) def ZER(N): return [False for _ in range(N)] INF=float("inf") MOD=10**9+7 #     V #   / ̄ψ ̄\ #  | 合格祈願 | #  |_____| ############################################################################## n=II() ans=0 while 1<=n: ans+=1 n/=2 print(ans)