#!/bin/sh
echo -n "input an integer (1 to 10): "
read INPUT_VAR

if [ $INPUT_VAR -le 2 ]
then
    echo "input less than or equal to 2"
elif [ $INPUT_VAR -lt 4 ] && [ $INPUT_VAR -gt 2 ]
then
    echo "2 < input < 4"
else
    echo "input >= 4 "
fi
