#/usr/bin/tcsh

set K = $1
set r = $2

@ i = 0
while ( $i < $r )
   set out  = `time test.sh $K`
   echo $out >> times
   @ i = $i + 1
end

