target = int(input()) current = 1 count = 0 while current < target: current *= 2 count += 1 print(count)