n=int(input());c=0 while n!=1: if n%2!=0: n+=1 n//=2 else: n//=2 c+=1 print(c)