def main(): n = int(input()) if n == 1: ans = 1 n = 4 else: ans = 0 while n-1: ans += 1 if n % 2: n = 3*n+1 else: n //= 2 return ans print(main())