#!/usr/bin/python a=int(input()) i=0 while(a!=1): if a%2==0: a=a//2 i=i+1 else: a=a*3+1 i=i+1 print i