diff --git a/calculator.py b/calculator.py index feefb4e3..969f08a4 100644 --- a/calculator.py +++ b/calculator.py @@ -1,5 +1,6 @@ # Demo Calculator App For Week 1 Project # Addition Method + def add(a, b): return a + b