x = 10
y = 5
a = 15
Addition Example: 10 + 5
15
Subtraction Example: 10 - 5
5
Multiplication Example: 10 * 5
50
Division Example: 10 / 5
2
Modulus Example: 10 % 5
0
Pre-increment Example:
int(16)
int(16)
Post-increment Example:
int(15)
int(16)
Pre-decrement Example:
int(14)
int(14)
Post-decrement Example:
int(15)
int(14)

Addition adds x and y
Subtraction subtracts x and y
Multiplication multiplies x and y
Division divides x and y
Modulus uses the remainder of x and divides by y
Pre-increment increments a by one then returns a
Post-increment returns a then increments a by one
Pre-decrement decrements a by one then returns a
Post-decrement returns a then decrements a by one