Revising Quadratic Equations

#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)/2
a;

  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

Grahul, plz use these corrections in your code as ,
det=sqrt(bb-4ac);
if(det>=0)
{
r1=(-b+det)/2
a;
r2=(-b-det)/2*a;
if(r1!=r2)
{
cout<<“Real and Distinct”<<endl;
else
if(r1==r2 || (r1==0 && r2==0))
{
cout<<“Real and Equal”<<endl;

plz make changes accordingly,