N = int(input()) count = 0 for i in range(1,N+1): count += 1 if N // 2**i <= 2: count += 1 break print(count)