N=int(input()) for i in range(60): if N<2: break if N&1: N+=1 else: N>>=1 print(i)