n = int(input()) m = n i = 0 while n > 1: if n % 2: n = 3 * n + 1 else: n //= 2 m = max(m, n) i += 1 print(i, m, sep="\n")