Inputs: Three coefficients (a, b, and c) Outputs: Two solutions (sol1 and sol2), and the three coefficients Algorithm: Get Coefficients Echo Print Coefficients sol1 = -b + sqrt(b*b - 4*a*c)/(2*a) sol2 = -b - sqrt(b*b - 4*a*c)/(2*a) Print sol1, sol2