From 33e6f6eeb623b664db128e6b9fec018572113426 Mon Sep 17 00:00:00 2001 From: rachealben <133984839+rachealben@users.noreply.github.com> Date: Mon, 8 Apr 2024 22:02:42 +0100 Subject: [PATCH] Update 015_add_numbers.py --- 015_add_numbers.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/015_add_numbers.py b/015_add_numbers.py index 08d89bd8..230badd4 100644 --- a/015_add_numbers.py +++ b/015_add_numbers.py @@ -12,7 +12,10 @@ # YOUR FUNCTION GOES BELOW THIS LINE - +def add_numbers(num1, num2): + return num1 + num2 +result = add_numbers(5, 10) +print("The sum is:", result) # YOUR FUNCTION GOES ABOVE THIS LINE