Start: Apr, 17, 2017 10:00:00
Python程序设计基础培训第二次作业
End: Apr, 23, 2017 14:00:00
Time elapsed:
Time remaining:

Problem_ID: B
Result: Accepted
Time: 124ms
Memory: 21432kB
Author: 13566300713
In contest: 1086

#!/user/bin/python
# -*- coding: UTF-8 -*-
a=int(input())
n=0
while a!=1:
    if a % 2 == 0:
        a=a/2
        n=n+1
    else:
        a=a*3+1
        n=n+1
print n