#include "stdio.h"
#include "math.h"
#include "stdlib.h"

double computationConstraint(double a, double b, double c)
{
	
	double temp2;
	temp2 = sqrt(b*b - 4 * a *c);
	
	return temp2;
}