#include using namespace std; #define rep(i, n) for(ll i = 0, i##_len = (n); i < i##_len; ++i) #define rep2(i, x, n) for(ll i = x, i##_len = (n); i < i##_len; ++i) #define all(n) begin(n), end(n) using ll = long long; using P = pair; using vi = vector; using vl = vector; using vs = vector; using vc = vector; using vb = vector; using vd = vector; vi dir = {-1, 0, 1, 0, -1, -1, 1, 1, -1}; int main() { double a, b, c, d, e, f; cin >> a >> b >> c >> d >> e >> f; double x = (c * e - b * f) / (a * e - b * d); double y = (c * d - a * f) / (b * d - a * e); printf("%.10f %.10f\n", x, y); }