feat(solution): problem #16

main
steven 2023-07-31 16:35:29 -04:00
parent 69ec378377
commit 7f292cce82
1 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1,6 @@
digitSum = 0
for i in str(2**1000):
digitSum += int(i)
print(digitSum)