#include<bits/stdc++.h>
using namespace std;
int main() {
long a=0,b=0,c=0;
long x=0,y=0;
cin>>a>>b>>c;
long root = bb -4ac;
if(root>0)
{
cout<<“Real and Distinct”<<endl;
x = (-b + sqrt(root))/2a;
y = (-b - sqrt(root))/2*a;
cout<<x<<" "<<y<<endl;
}
else if(root==0)
{
cout<<"Real and Equal"<<endl;
x = (-b)/2*a;
cout<<x<<" "<<x<<endl;
}
else
{
cout<<"Imaginary";
}
return 0;
}
unable to pass one test case …will you please help me out