1. Create a python function that solve the second order quadratic equation Hint: recall that the roots of a quadratic equation ax2+bx+c are x= -b + b2 - 4ac 2a Hint: use the math.sqrt function to compute the square root. (If you are using the Python interpreter, you need to first do import math. The function should ask the user to enter the coefficients of the equation (a,b,c) and then print the solution of this equation.