10 ile 100 arası;

<%
for i = 10 to 100
if not i mod 2 = 0 and not i mod 3 = 0 and not i mod 4 = 0 and not i mod 5 = 0 and not i mod 6 = 0 and not i mod 7 = 0 and not i mod 8 = 0 and not i mod 9 = 0 then
Response.Write i&"<br />"
end if
next
%>