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