Display number from 10 to 1 using shell programming in while loop

echo "enter the number"
read n
while [ $n -ge 0 ]
do
echo "$n"
let n--
done

Read the special homework rules.