Prepare a program to implement a for loop.
Program: Write a for loop that sums all the odd integers between 5 and 20 inclusive.
For example the output of the sum would be 5 + 7 + 9 + 11 + 13 + 19 (64).
Write just the part of code required to use a for-loop to find print the sum. (Do not write a complete program)