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

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