Var a,b,c,x1,x2,d:real; begin read(a,b,c); d:=b*b-4*a*c; x1:=(-b-sqrt(d))/(2*a); x2:=(-b+sqrt(d))/(2*a); writeln(x1,' ',x2); end.