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