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