clears=0for i=101 to 1000 step 2 flag=0 for j=2 to int(sqrt(i)) if mod(i,j)=0 flag=1 exit endif endfor if flag=0 s=s+i endifendfor?"s=",sreturn
来晚了