#include <stdio.h> int main() { int n,i=0; scanf("%d",&n); while(n!=1) { if(n%2) n=n*3+1; else n/=2; i++; } printf("%d",i); return 0; }