n = int(input()) i = 1 ma = n while True: if n % 2 == 0: n //= 2 else: n = 3 * n + 1 if n > ma: ma = n if n == 1: break i += 1 print(i, ma, sep='\n')