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