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