#include <bits/stdc++.h> using namespace std; typedef long long ll; template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return true; } return false; } template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return true; } return false; } #define all(x) (x).begin(),(x).end() #define fi first #define se second #define si(x) int(x.size()) const int mod=1000000007,MAX=200005; const ll INF=1LL<<60; int main(){ std::ifstream in("text.txt"); std::cin.rdbuf(in.rdbuf()); cin.tie(0); ios::sync_with_stdio(false); double P,Q;cin>>P>>Q; double left=1.0,right=INF; for(int t=0;t<100;t++){ double mid=(left+right)/2.0; double a=mid*mid; double b=P+Q*mid*log2(mid); if(a<b) left=mid; else right=mid; } cout<<setprecision(25)<<left<<endl; }