#include<bits/stdc++.h>
using namespace std;
int main()
{
double a,b,c,d,e,f,x,y,z;
cin>>a>>b>>c>>d>>e>>f;
x=a*e-b*d;
y=c*e-b*f;
z=a*f-c*d;
if(x==0)
{
if(y!=0 or z!=0) cout<<"No answer"<<'\n';
else cout<<"Too many"<<'\n';
}
else
{
printf("x=%.2lf\n",y/x);
printf("y=%.2lf\n",z/x);
}
}