4 lines
99 B
Python
4 lines
99 B
Python
|
|
from functools import reduce
|
|
print(str(reduce(lambda x, y: x + y ** y, range(1, 1001), 0))[-10:])
|