n=int(input()) t=0 while n!=1: try: if n%2==0: n/=2 else: n=n*3+1 t+=1 except EOFError: break print(t)