def General_Binary_Increase_Search(L,R,cond,Integer=True,ep=1/(1<<20)): """条件式が単調増加であるとき,一般的な二部探索を行う. L:解の下限 R:解の上限 cond:条件(1変数関数,広義単調減少 or 広義単調減少を満たす) Integer:解を整数に制限するか? ep:Integer=Falseのとき,解の許容する誤差 """ if not(cond(R)): return False if Integer: R+=1 while R-L>1: C=L+(R-L)//2 if cond(C): R=C else: L=C return R else: while (R-L)>=ep: C=L+(R-L)/2 if cond(C): R=C else: L=C return R def General_Binary_Decrease_Search(L,R,cond,Integer=True,ep=1/(1<<20)): """条件式が単調減少であるとき,一般的な二部探索を行う. L:解の下限 R:解の上限 cond:条件(1変数関数,広義単調減少 or 広義単調減少を満たす) Integer:解を整数に制限するか? ep:Integer=Falseのとき,解の許容する誤差 """ if not(cond(L)): return False if Integer: L-=1 while R-L>1: C=L+(R-L)//2 if cond(C): L=C else: R=C return L else: while (R-L)>=ep: C=L+(R-L)/2 if cond(C): L=C else: R=C return L #========================================================== from math import sqrt a,b,c=map(int,input().split()) D=b*b-4*a*c if D>0: p=General_Binary_Decrease_Search(-10*100,-b/(2*a),lambda x:a*x**2+b*x+c>=0,False,10**(-10)) q=General_Binary_Increase_Search(-b/(2*a),10**100,lambda x:a*x**2+b*x+c>=0,False,10**(-10)) print(p,q) elif D==0: print(-b/(2*a)) else: print("imaginary")