#include "bits/stdc++.h" using namespace std; // コンテスト中のみ //#define int long long #define ll long long #define rep(i,n) for(int i = 0; i < (n); i++) #define P pair #define ld long double ll INF = (1LL << 60); int MOD = 1000000007; signed main() { ios::sync_with_stdio(false); cin.tie(nullptr); cout << fixed << setprecision(15); ld a, b, c, d, e, f; cin >> a >> b >> c >> d >> e >> f; ld ans = sqrt(f - e + ((d*d) / (4 * b)) + ((c*c) / (4 * a))); cout << ans << endl; return 0; }