#include #define rep(i, n) for (ll i = 0; i < (n); ++i) #define rep1(i, n) for (ll i = 1; i <= (n); ++i) #define rrep(i, n) for (ll i = (n - 1); i >= 0; --i) #define ALL(obj) (obj).begin(), (obj).end() #define pb push_back #define to_s to_string #define len(v) (ll)v.size() #define UNIQUE(v) v.erase(unique(v.begin(), v.end()), v.end()) #define print(x) cout << (x) << '\n' #define debug(x) cout << #x << ": " << (x) << '\n' using namespace std; using ll = long long; typedef pair P; ll MOD = 1e9 + 7; ll devc(ll x, ll y) { return 1 + (x - 1) / y; } int main() { cin.tie(0); ios::sync_with_stdio(0); cout << fixed << setprecision(20); double x, y, h; cin >> x >> y >> h; x *= double(1000); y *= double(1000); if(x > y) swap(x, y); ll ans = 0; while(1){ if(x > y) swap(x, y); if(h >= y) break; if(x > h){ x /= 2; h *= 2; }else if(y > h){ y /= 2; h *= 2; } ++ans; } print(ans); return 0; }