You have a list of numbers, and you need to add up the numbers that are in the odd positions, like the 1st, 3rd, 5th, etc. The task is to find the total of these numbers.
Input: [3, 1, 4, 1, 5, 9, 2]
[3, 1, 4, 1, 5, 9, 2]
Output: 14
14
Input: [100]
[100]
Output: 100
100