#include using namespace std; typedef long long int ll; int main(){ cin.tie(nullptr); ios::sync_with_stdio(false); double a,b,c,d,e,f; while(cin >> a >> b >> c >> d >> e >> f){ double y=(c*d-a*f)/(b*d-a*e); double x=(c-b*y)/a; printf("%.9lf %.9lf\n",x,y); } }