From a5104b6a85b5f12eed23811710c67a8c26e76d92 Mon Sep 17 00:00:00 2001 From: QuantumOperator Date: Fri, 26 Jan 2024 10:49:08 -0600 Subject: [PATCH] Fix stuff --- Randy/add_and_print.py | 2 +- Sam/add_and_print.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) 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)