aboutsummaryrefslogtreecommitdiffstats
path: root/sumexp.py
diff options
context:
space:
mode:
Diffstat (limited to 'sumexp.py')
-rw-r--r--sumexp.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/sumexp.py b/sumexp.py
deleted file mode 100644
index a4d8eaf..0000000
--- a/sumexp.py
+++ /dev/null
@@ -1,9 +0,0 @@
-# Problem 16 Power digit sum
-n = 2**1000
-strn = str(n)
-s = 0
-
-for i in strn:
- s += int(i)
-
-print(s)