using System; public class Hello{ public static void Main(){ int n = int.Parse(Console.ReadLine()); int c = 0; int b = n; while(n!=1){ if(n %2 == 1){ n = n*3+1; c++; }else{ n /= 2; c++; } if(b