def findSmallestValueInAListOfIntegers(z):
q = sorted(z)
return q[0]
def f(n):
if n == 0:
return 0
else:
return f(n-1) + 2*n - 1
def foo(w):
result = 0
for c in str(w):
if c.isdigit() and c%2 == 1:
result *= c
return result