Addition Example: 100+100
200
The addition operator adds the numbers on each side of the operator together.

Subtraction Example: 100-50
50
The subtraction operator subtracts the number on the right side of the operator from the number on the left side of it.

Multiplication Example: 10*10
100
The multiplication operator multiplies the numbers on each side of the operator together.

Division Example: 100/100
1
The division operator divides the number on the left side of the operator by the number on the right side of it.

Modulus Example: Remainder of 100/3
1
The modulus operator will work the same as the division operator, however, it will only complete full integer division. The remaining integer will then be provided.