#! /bin/csh -f
# Last modified on Mon Jun 30 20:57:15 PDT 1986 by stolfi
set i = $1
set n = $2
while ($i <= $n) 
  echo $i
  @ i++
end
