D=b**2-4ac в питоне как решить напишите программу плз
B, a, c = int(input()), int(input()), int(input()) d = b ** 2 - 4 * a * c print(d)