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