#include
#include<math.h>
using namespace std;
int main() {
int a,b,c;
cin>>a>>b>>c;
int d = bb - 4ac;
int x=(-b - sqrt(d))/(2a);
int y=(-b + sqrt(d))/(2a);
if (d > 0){
cout << “Real and distinct \n”;
cout << min(x,y) << " "
<< max(x,y);
}
else if (d == 0)
{
cout << “Real and same \n”;
cout << -b / (2a);
}
else
{
cout << “Complex \n”;}
return 0;
}