summaryrefslogtreecommitdiff
path: root/Problem56.py
diff options
context:
space:
mode:
authorJoshua Drake <joshua.drake@ditchwitch.com>2023-04-07 08:13:49 -0500
committerJoshua Drake <joshua.drake@ditchwitch.com>2023-04-07 08:13:49 -0500
commit1161f9a034de06a63538e3a9a0b7717098c744d9 (patch)
tree55bb842b2daa4f096eb7916a8d3630426fc1c376 /Problem56.py
Initial CommitHEADmaster
Diffstat (limited to 'Problem56.py')
-rw-r--r--Problem56.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/Problem56.py b/Problem56.py
new file mode 100644
index 0000000..f02667f
--- /dev/null
+++ b/Problem56.py
@@ -0,0 +1,11 @@
+maxsum = 0
+for a in range(0,100):
+ for b in range(0,100):
+ count = 0
+ temp = str(pow(a,b))
+ for x in range(0,len(temp)):
+ count += int(temp[x])
+ if count > maxsum: maxsum = count
+print(maxsum)
+
+