diff --git a/Randy/add_and_print.py b/Randy/add_and_print.py index 480148c..8127e74 100644 --- a/Randy/add_and_print.py +++ b/Randy/add_and_print.py @@ -1,3 +1,3 @@ def add(a, b): - result = a + b + 1 + result = a + b print(result) diff --git a/Sam/add_and_print.py b/Sam/add_and_print.py index 480148c..dbda733 100644 --- a/Sam/add_and_print.py +++ b/Sam/add_and_print.py @@ -1,3 +1,4 @@ def add(a, b): result = a + b + 1 + #roll tide print(result)