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