9 lines
191 B
Python
9 lines
191 B
Python
|
|
def add_numbers(a, b):
|
||
|
|
"""Return the sum of two numbers."""
|
||
|
|
return a + b
|
||
|
|
|
||
|
|
|
||
|
|
if __name__ == "__main__":
|
||
|
|
# Example usage
|
||
|
|
result = add_numbers(5, 3)
|
||
|
|
print(f"5 + 3 = {result}")
|