diff options
Diffstat (limited to 'wk6/lect/calculator.py')
-rw-r--r-- | wk6/lect/calculator.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/wk6/lect/calculator.py b/wk6/lect/calculator.py new file mode 100644 index 0000000..d6886ee --- /dev/null +++ b/wk6/lect/calculator.py @@ -0,0 +1,4 @@ +x = input("x: ") +y = input("y: ") + +print(x + y) |