Import math
a=int(input())
b=int(input())
c=int(input())
d = b * b - 4 * a * c
print ("D =", d)
if d == 0:
d1 = math.sqrt (d)
x = -b + d1
print ("x =", x)
if d>0:
x1 = -b + d1
x2 = -b - d1
print ("x1 =", x1, " x2 =", x2)
else if d<0:
print ("Error"
a=int(input())
b=int(input())
c=int(input())
d = b * b - 4 * a * c
print ("D =", d)
if d == 0:
d1 = math.sqrt (d)
x = -b + d1
print ("x =", x)
if d>0:
x1 = -b + d1
x2 = -b - d1
print ("x1 =", x1, " x2 =", x2)
else if d<0:
print ("Error"