Write a bash script that takes two positive integers a and b (where a < b < 10000) as arguments and returns the sum of all odd integers from a through b, inclusively.

Example Output:

$ ./sum_odd_integers.sh 100 200
7500
$ ./sum_odd_integers.sh 1 10
25