3 lines
68 B
Python
3 lines
68 B
Python
|
|
def add(a, b):
|
||
|
|
"""Return the sum of a and b."""
|
||
|
|
return a + b
|