<%
max = int(request.querystring)
if max > 50 then max = 9
for i = 1 to max
   for j = 1 to i
      response.write( j )
   next
   response.write("
") next %>