#/bin/bashdeclare -i EVENSUM=0declare -i ODDSUM=0for I in {1..100}; do if [ $[$I%2] -eq 0 ]; then let EVENSUM+=$I else let ODDSUM+=$I fidoneecho "odd sum is: $ODDSUM."echo "event sum is: $EVENSUM."bash