#! /bin/sh

[ $# -ne 2 ] && echo $0 start finish && exit
start=$1
end=$2
for (( i = start; i <= end; ++i ))
do
    echo -n "$i "
done
echo
