
# accum2.py
numbers = [2, 4, 6, 8, 10, 12, 14, 16, 18]

# Compute product of all numbers in the list
prod = 1
for n in numbers:
    prod = prod * numbers[i]
print('The product is', prod)
