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