Change the content of a string

This docstring is a complete lie. Fix it.

Input

def add(a, b):
    """ Subtracts "x" from "y" """
    return a + b

Output

def add(a, b):
    """ Adds "a" to "b" """
    return a + b