read -p "Enter a number (must be greater than 20) : " n
if [ $n -gt 20 ]; then
echo "$n is greater than 20."
else
echo "You are not following my instructions."
fi