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