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

if [ $INPUT_VAR -le 5 ]
then
    echo "input less than or equal to 5"
else
    echo "input is greater than 5"
fi
