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