diff options
Diffstat (limited to 'sumexp.py')
-rw-r--r-- | sumexp.py | 9 |
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) |