a = int(input()) b=1 c=a while a!=1: b +=1 if a%2==0: a=a/2 else: a=a*3+1 if c