#include using namespace std; using ll = long long int; using lc = complex; double dot(lc a, lc b) { return (a * conj(b)).real(); } double cross(lc a, lc b) { return (a * conj(b)).imag(); } int main(void) { constexpr ll MOD = 1e9 + 7; constexpr double PI = acos(-1); cout << fixed << setprecision(32); cin.tie(0); ios::sync_with_stdio(false); ll d1, d2; cin >> d1 >> d2; if(d1*2 < d2 || d2