#ABC116B. [ABC116B] Collatz Problem

[ABC116B] Collatz Problem

Score : 200200 points

Problem Statement

A sequence a={a1,a2,a3,......}a=\{a_1,a_2,a_3,......\} is determined as follows:

  • The first term ss is given as input.
  • Let f(n)f(n) be the following function: f(n)=n/2f(n) = n/2 if nn is even, and f(n)=3n+1f(n) = 3n+1 if nn is odd.
  • ai=sa_i = s when i=1i = 1, and ai=f(ai1)a_i = f(a_{i-1}) when i>1i > 1.

Find the minimum integer mm that satisfies the following condition:

  • There exists an integer nn such that am=an(m>n)a_m = a_n (m > n).

Constraints

  • 1s1001 \leq s \leq 100
  • All values in input are integers.
  • It is guaranteed that all elements in aa and the minimum mm that satisfies the condition are at most 10000001000000.

Input

Input is given from Standard Input in the following format:

ss

Output

Print the minimum integer mm that satisfies the condition.

8
5

a={8,4,2,1,4,2,1,4,2,1,......}a=\{8,4,2,1,4,2,1,4,2,1,......\}. As a5=a2a_5=a_2, the answer is 55.

7
18

$a=\{7,22,11,34,17,52,26,13,40,20,10,5,16,8,4,2,1,4,2,1,......\}$.

54
114