n = int(input()) ans = 0 while True: ans += 1 if n % 2 == 0: n //= 2 else: n = 3 * n + 1 if n == 1: break print(ans)