#include <iostream> #include <algorithm> #include <vector> #include <iomanip> #include <map> #include <queue> #include <cmath> #include <limits> static const int MOD = 1000000007; using ll = long long; using u32 = unsigned; using namespace std; template<class T> constexpr T INF = ::numeric_limits<T>::max() / 32 * 15 + 208; int main() { long double r, d; cin >> r >> d; cout << setprecision(15) << sqrt(d*d-r*r) << "\n"; return 0; }