N = int(input()) c = 1 while N >= 2: c += 1 N //= 2 print(c)