n=gets.to_i ans=0 while n!=1 if n%2==0 n=n/2 else n+=1 end ans+=1 end puts ans