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