aboutsummaryrefslogtreecommitdiffstats
path: root/sumexp.py
blob: a4d8eafc6dd578da68ac9543b25644ee11166b0c (plain)
1
2
3
4
5
6
7
8
9
# Problem 16 Power digit sum
n = 2**1000
strn = str(n)
s = 0

for i in strn:
    s += int(i)

print(s)