7 lines
158 B
Python
7 lines
158 B
Python
|
|
from functools import reduce
|
|
|
|
total = reduce(lambda x, y: x * y, range(40, 20, -1), 1)
|
|
total = reduce(lambda x, y: x // y, range(1, 21), total)
|
|
print(total)
|