Code is working perfectly on saphire engine but on showing unexpected output on codingbocks ide

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

@anonymous43 Please save your code on ide.codingblocks.com and share its link.

REOPENED …

@anonymous43 just add endl after printing r1 and r2