Pls help s tymto programikom :
//69. Kv_rovnica
//Vytvorte program na riešenie kvadratickej rovnice ax2+bx+c=0 v obore reálnych èísel.
program Kv_rovnica;
uses crt;
var a,b,c,D,vys1,vys2,vys:real;
begin
write('Zadaj a: ');
readln(a);
write('Zadaj b: ');
readln(b);
write('Zadaj c: ');
readln(c);
D := (sqr(b) ) - (4*a*c);
vys1:=((-b) + (sqrt(D)))/2*a;
vys2:=((-b) - (sqrt(D)))/2*a;
if vys2 < vys1 then
begin
vys1:=vys2;
vys2:=vys1;
end;
if vys2 > vys1 then ;
if D>0 then
writeln('Vysledkom rovnice ',a,'x2+',b,'x+',c,'=0 je P{',vys1,',',vys,'}');
else if D=0 then
begin
vys:= -b/2*a;
writeln('Vysledkom rovnice ',a,'x2+',b,'x+',c,'=0 je cislo ',vys);
end;
else if D<0 then
writeln('Rovnica nema riesenie');
readln();
end.