#include<bits/stdc++.h> using namespace std; int main() { int n; cin>>n; int cnt=0; while(n!=1) { if(n%2!=0) { n=n*3+1; cnt++; } else { n=n/2; cnt++; } } cout<<cnt; }
Using your lizikid universal account