Quadriatic Equation Solver
In this assignment, you will be writing a Python program that solves quadratic equations. A quadratic equation is a second-degree polynomial equation in a single variable with the form:
The solutions to a quadratic equation can be found using the quadratic formula:
Your task is to write a Python program that takes the coefficients , , and as input and calculates the roots of the quadratic equation using the quadratic formula. The program should output the roots of the equation.
For example, given the coefficients , , and , the program should output the roots and .