aboutsummaryrefslogtreecommitdiffstats
path: root/sumexp.py
diff options
context:
space:
mode:
Diffstat (limited to 'sumexp.py')
-rw-r--r--sumexp.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/sumexp.py b/sumexp.py
index 7e4a1f1..90dd2da 100644
--- a/sumexp.py
+++ b/sumexp.py
@@ -5,6 +5,6 @@ strn = str(n)
s = 0
for i in strn:
- s+=int(i)
+ s += int(i)
-print s
+print(s)