#!/bin/sh
echo "input an integer less than 4"
read VAR
n=0
while [ $VAR -lt 10 ]
do
    let "VAR = VAR + 1"
    let "n = n + 1"
    echo "loop $n: VAR is currently equal to $VAR"
done
