n=int(input()) nmax=n count=0 while n != 1: if n%2 == 0: n = n//2 else: n = 3*n + 1 if nmax < n: nmax = n count += 1 print(count) print(nmax)