  100 dim a ( 10 ) 
  110 for i = 1 to 10
  120  for j = 1 to 20
  121 a(i) = i * 100 + j
  130   print a(i),
  140   next 
  141 print
  150  next 
