n=int(input()) i=0 if n>1000 or n<1: print('输入数据错误') else: while n!=1: if n % 2 ==0: n=n/2 else: n=n*3+1 i=i+1 print(i)