#!/bin/csh -f
# size: set problem size to $1 by $2 variables

if ( $#argv < 2 ) goto syntax
echo Define problem domain of $1 by $2 variables
cat >! siz.dat <<EOF
$1 $2
EOF
goto end
syntax:
echo Usage: size nn mm
end:
