# simple_math2.py

"""script that defines and calls one simple math function and prints result"""

def increment(n):
    return n+1

x = 5
print("x has the value: "+str(x))
x = increment(x)
print("x now has the value: "+str(x))
print("amazing!")
