# simple_math.py

"""script that defines and calls one simple math function"""

def increment(n):
    """Returns: n+1"""
    return n+1

increment(2)
