#include
#include
using namespace std;
int main()
{ int a,b,c;
cin>>a>>b>>c;
int d;
d = pow(b,2)-4ac;
int x,y;
x= -b+pow(d,0.5)/2a;
y= -b-pow(d,0.5)/2a;
if ( x>0& y>0){
cout<<"Real and Real"<<endl;
cout<<x<<" "<<y;
}
if ( x>0& y<0){
cout<<“Real and Distinct”<<endl;
cout<<x<<" “<<y;
}
if ( x<0& y>0){
cout<<“Distinct and Real”<<endl;
cout<<x<<” “<<y;
}
if ( x<0& y<0){
cout<<“Distinct and Distinct”<<endl;
cout<<x<<” "<<y;
}
return 0;
}
Please tell the mistake in my code