Answer:
#!/usr/bin/env bash
for num in {100..200}
do
if [ $((num % 9)) -eq 0 ]
then
((sum += num))
fi
done
echo $sum
Step-by-step explanation:
The output will be 1683.
1.6m questions
2.0m answers