Added Problem 16
This commit is contained in:
parent
083bbf350e
commit
caee36a66a
15
Problem_016.py
Normal file
15
Problem_016.py
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
######################################################################
|
||||||
|
# 2^15 = 32768 and the sum of its digits is 3 + 2 + 7 + 6 + 8 = 26.
|
||||||
|
#
|
||||||
|
# What is the sum of the digits of the number 2^1000?
|
||||||
|
######################################################################
|
||||||
|
|
||||||
|
number = str(pow(2, 1000))
|
||||||
|
sum = 0
|
||||||
|
|
||||||
|
for c in number:
|
||||||
|
sum += int(c)
|
||||||
|
|
||||||
|
print(sum)
|
||||||
|
|
||||||
|
# Solution:
|
Loading…
Reference in a new issue