n = eval(input()) ans = 0 while n != 1 : if n % 2 == 0: n /= 2; else: n = n * 3 + 1 ans = ans + 1 print(ans)