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