n = gets.to_i ans = 0 while n != 1 ans += 1 if n.odd? n += 1 else n /= 2 end end p ans