def ascan; gets.split.map(&:to_i);end n = gets.to_i lop = 0 while 1 < n if n.odd? n += 1 else n /= 2 end lop += 1 end p lop