@ -0,0 +1,11 @@
from functools import reduce
num = 2**1000
l = list(map(lambda x: int(x), list(str(num))))
sum = reduce(lambda x, y: x + y, l)
print(sum)
The note is not visible to the blocked user.