Pick a positive integer
. If it is odd, multiply it by three and then
add one. Otherwise (if it is even), divide it by two. The positive
integer obtained is the new
, and this procedure is repeated.
It is believed that
will eventually become
(this is called the
Collatz conjecture.) Computers have checked that any value of
less
than
does, indeed, eventually become
if this procedure is
applied enough times.
You will be given the value of
. Determine how many times this
procedure must be applied before
becomes
.
Input Specification
The initial value of
.
Output Specification
The number of operations we have to perform on
before it becomes
.
Constraints
Any value of
, initial or intermediate, will be less than
.
Sample Input
Copy
7
Sample Output
Copy
16
Explanation
will go through these steps:

Comments
The input data has been set so any intermediate results will be less than 2^31 so n is only 35655. Can you also check if new test cases are needed?
The test data is very weak.
.
Genuine question.
How do you check the test data?
It would help me solve other problems, I think...
Thanks!
copy the input data and then just print it out
You don't, unless the problem originated from somewhere else