#include using namespace std; #define REP(i,n) for(int i=0; i<(int)(n); i++) int main() { ios_base::sync_with_stdio(0); cin.tie(0); double x, y, h; cin >> x >> y >> h; x *= 1e3; y *= 1e3; if (x > y) swap(x, y); int ret = 0; while (x > h) { h *= 2; x /= 2; ++ret; } while (y > h) { h *= 2; y /= 2; ++ret; } cout << ret << endl; return 0; }