1
0
Fork 0

Problem 48

This commit is contained in:
Jonathan Chan 2016-12-07 20:51:55 -08:00
parent 81217cc37a
commit 23a4e51a64
1 changed files with 4 additions and 0 deletions

4
48.py Normal file
View File

@ -0,0 +1,4 @@
sum = 0
for i in range (1, 1001):
sum = sum + i ** i
print sum % 10000000000