x = int(input("Введите a - "))
y = int(input("Введите b - "))
z = int(input("Введите c - "))
D = (y**2 - 4*x*z)
kd = D**0,5
x1=((y**2+kd)/(2*x))
x2=((y**2-kd)/(2*x))
print(x1, x2)
Выводит ошибку TypeError: unsupported operand type(s) for +: 'int' and 'tuple'
Что делать, подскажите очень прошу!
y = int(input("Введите b - "))
z = int(input("Введите c - "))
D = (y**2 - 4*x*z)
kd = D**0,5
x1=((y**2+kd)/(2*x))
x2=((y**2-kd)/(2*x))
print(x1, x2)
Выводит ошибку TypeError: unsupported operand type(s) for +: 'int' and 'tuple'
Что делать, подскажите очень прошу!