x, y, h = gets.split(" ").map{|s| s.to_i} v = [x*1000, y*1000] if v[0] > v[1] then maxi = 0 mini = 1 else maxi = 1 mini = 0 end cnt = 0 while v[maxi] > h do if v[mini] > h then v[mini] /= 2 else v[maxi] /= 2 end h *= 2 cnt += 1 if v[0] > v[1] then maxi = 0 mini = 1 else maxi = 1 mini = 0 end end puts cnt