N = int(input()) SPLIT_COUNT = 0 while N > (2 ** SPLIT_COUNT): SPLIT_COUNT += 1 print(SPLIT_COUNT)