0 out of 68 challenges solved

Subtract all the arguments from the first argument to the function

def sub(first, *args):
    """
    Subtracts all the arguments (except the first one) from the first argument and returns the result.

    Args:
    first: The first argument.
    *args: The additional arguments.

    Returns:
    int or float: The result of the subtraction.
    """
    # TODO: Implement the sub function
    pass