tdsproject1 / me /generated_code.py
abdullahmak's picture
updates
fef8af1
raw
history blame contribute delete
219 Bytes
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