#adx+bdy=dc #adx+aey=af a,b,c,d,e,f=map(int,input().split()) y=(a*f-d*c)/(a*e-b*d) x=(c-b*y)/a print(x,y)