From 1161f9a034de06a63538e3a9a0b7717098c744d9 Mon Sep 17 00:00:00 2001 From: Joshua Drake Date: Fri, 7 Apr 2023 08:13:49 -0500 Subject: Initial Commit --- Problem16.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 Problem16.py (limited to 'Problem16.py') diff --git a/Problem16.py b/Problem16.py new file mode 100644 index 0000000..e46112c --- /dev/null +++ b/Problem16.py @@ -0,0 +1,6 @@ +import math +numstring = str(pow(2,1000)) +sum = 0 +for x in range(0,len(numstring)): + sum += int(numstring[x]) +print(sum) \ No newline at end of file -- cgit v1.2.3