#include<iostream>
#include<cmath>
#include<iomanip>
using namespace std;
int main(){
double a,b,c,de,x1,x2,deg;
cin>>a>>b>>c;
de=b*b-4*a*c;
if (de>0){
deg=sqrt(de);
x1=(-b+deg)/(2*a);
x2=(-b-deg)/(2*a);
if (x1>x2){swap(x1,x2);}
cout<<"x1=";
cout<<fixed<<setprecision(5)<<x1;
cout<<";";
cout<<"x2=";
cout<<fixed<<setprecision(5)<<x2;
} else if(de=0){
deg=sqrt(de);
x1=-b/(2*a);
cout<<"x1=x2=";
cout<<fixed<<setprecision(5)<<x1;
}else{
cout<<"No answer!";
}
return 0;
}
![]()