#include
#include
using namespace std;
int main() {
int a,b,c;
int x1,x2;
cin>>a>>b>>c;
float d;
d=sqrt((bb)-(4ac));
if(d>0){
cout<<“Real and Distinct”<<endl;
x1=(-b+d)/(2a);
x2=(-b-d)/(2a);
if(x1>x2){
cout<<x2<<" “<<x1;
}
else{
cout<<x1<<” "<<x2;
}
}
if(d==0){
cout<<“Real and Equal”<<endl;
cout<<-b/(2a);
}
if(d<0){
cout<<“Roots are imaginary”;
}
return 0;
}