#include #include #include #include #include #include #include #include #include #include #include using namespace std; using int64 = long long; struct aaa{aaa(){cin.tie(nullptr); ios::sync_with_stdio(false); cout<> a >> b >> c >> d >> e >> f; double y = (c*d - a*f) / (b*d - a*e); double x = (c - b*y) / a; cout << x << " " << y << endl; }