from functools import reduce

result = reduce(lambda x, y: x * y, numbers)

print(result)