#include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(0); double r, d; cin >> r >> d; cout << setprecision(20) << fixed << sqrt(d * d - r * r) << endl; return 0; }