# Math Functions Examples Below are some examples of math functions. ## Example 1: Addition / Subtraction Function ```python #DEF v1 = Value(...) v2 = Value(...) result = v1 + v2 final = result - 10.0 print(final) #ENDDEF ``` ## Example 2: Multiplication ```python #DEF v1 = Value(...) v2 = Value(...) result = v1 * v2 #ENDDEF ```