# simple_math.py

"""module with two simple
   math functions"""

def increment(n):
    """Returns: the value of n+1"""
    return n+1

def decrement(n):
    """Returns: the value of n-1"""
    return n-1