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