10 + 5 = 15
The addition operator (+) adds two numbers together.
10 - 5 = 5
The subtraction operator (-) subtracts the second number from the first number.
10 * 5 = 50
The multiplication operator (*) multiplies two numbers together.
10 / 5 = 2
The division operator (/) divides the first number by the second number.
10 % 5 = 0
The modulus operator (%) returns the remainder of the division of the first number by the second number.