goal = int(input()) bis = 1 count = 0 while goal >= bis: bis *2 count += 1 print(count)