#include #include "numbers.h" int main () { Unum a, b, c, temp, r1, r2; cout << "Enter the values for a, b and c in the equation aX**2+bX+c"<> a >> b >> c; temp = sqrt (pow(b,2) - Unum(4)*a*c); r1 = (-b + temp) / (Unum(2) * a); r2 = (-b - temp)/ (Unum(2) * a); cout << "The roots of the equation are " << r1 << " and " << r2 << end << endl; }