Spaces:
Sleeping
Sleeping
| def add_numbers(num1, num2): | |
| # This function takes two arguments, num1 and num2, | |
| # and returns their sum. | |
| return num1 + num2 | |
| # Example usage: | |
| # result = add_numbers(3, 5) | |
| # print(result) # Output will be 8 |