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