N=int(input()) i=1 while True: if 2**i>=N:break i+=1 print(i)