<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;"># simple_math.py

"""script that defines and calls one simple math function"""

def increment(n):
    """Returns: n+1"""
    return n+1

increment(2)
</pre></body></html>