from math import sqrt
a,b,c=map(float,input().split())
m=b*b-4*a*c
if a!=0:
x1=((-b+sqrt(m))/(2*a))
x2=((-b-sqrt(m))/(2*a))
if m>=0:
if m==0:
print("x1=x2={:.5f}".format(x1))
else:
if x1<x2:
print("x1={:.5f};x2={:.5f}".format(x1, x2))
else:
print("x1={:.5f};x2={:.5f}".format(x2, x1))
elif m<0:
print('No answer!')