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