a,b,c=map(int,input().split()) if b**2-4*a*c<0:print("imaginary") else:print(*sorted(set([(-b+(b**2-4*a*c)**.5)/(2*a),(-b-(b**2-4*a*c)**.5)/(2*a)])))