#include using namespace std; #define REP(i,a,b) for(int i=a;i<(int)b;i++) #define rep(i,n) REP(i,0,n) #define all(c) (c).begin(), (c).end() #define zero(a) memset(a, 0, sizeof a) #define minus(a) memset(a, -1, sizeof a) #define watch(a) { std::cout << #a << " = " << a << "\n"; } template inline bool minimize(T1 &a, T2 b) { return b < a && (a = b, 1); } template inline bool maximize(T1 &a, T2 b) { return a < b && (a = b, 1); } template istream& operator>> (istream& ist, pair& p) { return ist >> p.first >> p.second; } template ostream& operator<< (ostream& ost, pair& p) { return ost << p.first << ", " << p.second; } template istream& operator>> (istream& ist, vector& vs) { for(auto& e: vs) ist >> e; return ist; } typedef long long ll; int const inf = 1<<29; int main() { double r, d; cin >> r >> d; printf("%.20f\n", sqrt(d * d - r * r)); }