Calculate the sum of the odd numbers in the list
Write a program that receives a list of integers and calculates and displays the sum of all the odd numbers in it.
For example, if the input is:
numbers = [3, 8, 5, 12, 7, 10]
The output of the program should be the number 15, because the odd numbers 3, 5 and 7 are added.