#include #include using namespace std; int main() { long double x, y, h; cin >> x >> y >> h; x *= 1000; y *= 1000; int s = 0; while(x / pow(2, s) > h * pow(2, s)) s++; h *= pow(2, s); int t = 0; while(y / pow(2, t) > h * pow(2, t)) t++; h *= pow(2, t); cout << s + t << endl; }