n = int(input()) x = [n] while n != 1: if n % 2 == 0: n //= 2 else: n = 3 * n + 1 x += [n] print(len(x) - 1) print(max(x))