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