From 82c9bd9ef03f69524bb1479a636af6bd5e136c0a Mon Sep 17 00:00:00 2001 From: syed-mohsin-s Date: Sun, 23 Nov 2025 19:47:22 +0530 Subject: [PATCH] Fix result calculation in test1.py Updated the second argument of the add_numbers function call. --- test1.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test1.py b/test1.py index 9b0c860..9b92ad1 100644 --- a/test1.py +++ b/test1.py @@ -5,4 +5,4 @@ def add_numbers(a, b): print("Sum is the:", result) # <-- ERROR: 'result' is not defined -result = add_numbers(5, 10) +result = add_numbers(5, 45)