From caee36a66a2758cee1ada88b0057007b27f40715 Mon Sep 17 00:00:00 2001 From: Lauchmelder23 Date: Thu, 11 Oct 2018 22:05:31 +0200 Subject: [PATCH] Added Problem 16 --- Problem_016.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Problem_016.py diff --git a/Problem_016.py b/Problem_016.py new file mode 100644 index 0000000..a6d688e --- /dev/null +++ b/Problem_016.py @@ -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: