5 lines
89 B
Python
5 lines
89 B
Python
|
|
from functools import reduce
|
|
|
|
print(reduce(lambda x, y: x + int(y), str(2 ** 1000), 0))
|