Mình làm đúng theo đề luôn nha bạn
uses crt;
var a,b,d,i:longint;
function nt(a:longint):boolean;
var i:longint;
begin
i:=2;
while(a>1)and(a mod i<>0)do inc(i);
nt:=i=a;
end;
begin
clrscr;
write('Nhap a: ');readln(a);
write('Nhap b: ');readln(b);
d:=0;
for i:=a to b do if nt(i) then inc(d);
writeln('Co ',d,' so nguyen to trong doan tu ',a,' den ',b);
readln
end.