I have made a quadratic formula in python, it looks like this:
import math a, b, c = input("Enter a, b and c: ").split() a, b, c = int(a), int(b), int(c