""" "Prompt Write a single-line docstring for the following function: def add(a, b): return a + b """ # Output: def add(a, b): """Return the sum of a and b.""" return a + b