summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--wk6/lect/calculator.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/wk6/lect/calculator.py b/wk6/lect/calculator.py
index fa6cfc1..3f39e13 100644
--- a/wk6/lect/calculator.py
+++ b/wk6/lect/calculator.py
@@ -7,7 +7,7 @@
# x = int(input("x: "))
# y = int(input("y: "))
-
+#
# z = x / y
# print(f"{z:.50f}")
@@ -21,4 +21,5 @@ def main():
print(x + y)
+
main()