#include #include #include #include #include #include #include #include #include #include #include #include #include using std::cerr; using std::cin; using std::cout; using std::pair; using std::string; using std::vector; //region #define FOR(i, a, b) for (int i = (a); i < (b); ++i) #define FORR(i, a, b) for (int i = (b); i >= (b); --i) #define rep(i, n) for (unsigned i = 0; i < (n); ++i) #define rep1(i, n) for (int i = 1; i <= (n); ++i) #define repr(i, n) for (int i = (n)-1; i >= 0; --i) #define repr1(i, n) for (int i = (n); i > 0; --i) #define all(vec) (vec).begin(), (vec).end() #define mset(v, n) std::memset((v), n, sizeof(v)) #define BIT(N) (1LL << (N)) #define each(i, v) for (auto&& i : (v)) #define unless(f) if(!(f)) using ll = long long; using ld = long double; using uint = unsigned int; using ull = unsigned long long; using vint = vector; using vlong = vector; using vstr = vector; using pii = pair; using pil = pair; using pll = pair; using vpii = vector; using vpil = vector; using vpll = vector; using vvi = vector; using vvl = vector; template using VV = vector>; vector split(const string &s, const string &delim) { vector res; uint pos = 0; while (true) { const size_t found = s.find(delim, pos); if (found < 0) { res.push_back(s.substr(pos)); break; } res.push_back(s.substr(pos, found - pos)); pos = found + delim.size(); } return res; } template string join(vector &vec, const string &sep) { size_t size = vec.size(); if (!size) return ""; std::stringstream ss; for (int i = 0; i < size - 1; i++) ss << vec[i] << sep; ss << vec[size - 1]; return ss.str(); } template std::istream &operator>>(std::istream &is, vector &vec) { for (T &x : vec) is >> x; return is; } template inline void print(const Iter &first, const Iter &last, const std::string &d = " ", bool endline = true) { cout << *first; for (Iter iter = first + 1; iter < last; ++iter) { cout << d << *iter; } if (endline) cout << "\n"; } constexpr ll powmod(ll a, ull b, uint p) { ll res = 1; while (b > 0) { if (b % 2) res = res * a % p; a = a * a % p; b >>= 1u; } return res; } constexpr ll pow(ll a, ull b) { ll res = 1; while (b > 0) { if (b % 2) res = res * a; a = a * a; b >>= 1u; } return res; } template bool chmax(T &a, const T &b) { return a < b && (a = b, true); } template bool chmin(T &a, const T &b) { return a > b && (a = b, true); } template void bsort(vector& v) { std::sort(v.begin(), v.end()); } template void rsort(vector& v) { std::sort(v.begin(), v.end(), std::greater()); } struct iii { iii() { cin.tie(nullptr); cout.tie(nullptr); std::ios::sync_with_stdio(false); cout << std::fixed << std::setprecision(16); } } init; //endregion void solve(); int main() { int t = 1; // scanf("%d", &t); // cin >> t; rep(i, t) solve(); return 0; } void solve() { long double a, b, c, d, e, f; std::cin >> a >> b >> c >> d >> e >> f; long double x = c / (2 * a); long double y = d / (2 * b); std::cout << std::sqrt(a * (x * x) + b * (y * y) - e + f) << std::endl; }