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