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