Create and Solve

1) Create two functions for another student to multiply. Limit to 3 terms. 2)

Create two functions to solve a quadratic equation.

1) Function multiply_three(a, b, c):
- Parameters: 3 integers a, b, and c
- Description: Multiplies the three given integer values.
- Returns: The product of the three integers.
- Implementation: The function multiplies the three integers using the formula: result = a * b * c.

Example:
Input: multiply_three(2, 3, 4)
Output: 24

2) Function solve_quadratic(a, b, c):
- Parameters: 3 integers a, b, and c representing the coefficients of the quadratic equation ax^2 + bx + c = 0.
- Description: Solves the given quadratic equation.
- Returns: The roots of the quadratic equation.
- Implementation: The function applies the quadratic formula to find the roots of the equation:
root1 = (-b + sqrt(b^2 - 4ac)) / (2a)
root2 = (-b - sqrt(b^2 - 4ac)) / (2a)
If the discriminant (the expression inside the square root) is negative, the equation has no real roots.

Example:
Input: solve_quadratic(1, -5, 6)
Output: Root 1: 3, Root 2: 2