N = gets.to_i n = N ans = 0 while n > 1 if n % 2 == 1 n += 1 else n /= 2 end ans += 1 end puts ans