input a,b,c d = b^2-4*a*c if d=0 then print "x=";-b/2*a if d>0 then print "x1=";(-b-sqrt(d))/2*a print "x2=";(-b+sqrt(d))/2*a endif