Revising quadratic equations

#include
#include <math.h>
using namespace std;
int main() {
int a,b,c,r1,r2,d;
cin>>a>>b>>c;
d=(bb-4ac);
r1=(-b+sqrt(d))/(2
a);
r2=(-b-sqrt(d))/(2*a);
if (r1<r2){
cout<<“Real and Distinct”<<endl;
cout<<r1<<" “<<r2;
}
else if(r2<r1){
cout<<“Real and Distinct”<<endl;
cout<<r2<<” “<<r1;
}
else if(r1==r2){
cout<<“Real and Equal”<<endl;
cout<<r1<<” "<<r2;
}
else{
cout<<“Imaginary”;
}
return 0;
}

one test case is not passing?

@chaman9
hello chaman.
please save ur code on https://ide.codingblocks.com/ and share the link here

hey… i doubt has been solved

@chaman9
ok then pls mark it resolved