#include #define exrep(i, a, b) for(long long i = a; i <= b; i++) #define rep(i,n)for(long long i=0;i<(long long)(n);i++) #define all(a) a.begin(), a.end() #define rall(a) a.rbegin(), a.rend() using namespace std; typedef unsigned long long ull; typedef long long ll; typedef long double ld; typedef pair P; typedef vector vl; typedef vector vs; typedef vector

vp; typedef vector > vvl; typedef vector > vvp; template inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; } template inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; } const ll MOD=1e9+7; const ll INF=1e18; const int MAX=510000; const double pi=acos(-1); int dx[4]={1,0,-1,0}; int dy[4]={0,1,0,-1}; int main(){ cin.tie(0); ios::sync_with_stdio(false); ll n; cin >> n; ll m=n; ll cnt=0; while(n!=1){ cnt++; if(n&1){ n=3*n+1; m=max(m,n); } else{ n/=2; m=max(m,n); } } cout << cnt << endl; cout << m << endl; return 0; }