#include using namespace std; typedef long long ll; typedef long double ld; templatebool chmax(T &a, const T &b) { if (abool chmin(T &a, const T &b) { if (b> x >> y >> h; x*=1000; y*=1000; if(x>y){ swap(x,y); } int ans=0; while(x>h||y>h){ if(x>h){ x/=2; } else{ y/=2; } h*=2; ans++; } cout << ans << endl; }