Given a, b and c, find the roots of the equation ax^2 +bx +c = 0 and then add them together.
1.0.find_roots_sum(2, 4, -6) ➞ -2.00
find_roots_sum(3, 4, -3) ➞ -1.33
find_roots_sum(4, 3, -8) ➞ -0.75
The Discriminant of a quadratic equation is b^2-4(a)(c).