Free Pascal - Arithmetic operators

Are used to perform mathematical operations. the following are basic operations between the arithmetic operators:
addition
par1 + par2
Subtraction
par1 - par2
multiplication
par1 * par2
division
par1 / par2
modulo
par1 mod par2
integer division
par1 div par2
additive inverse
- expression

Free Pascal

Other pieces of example codes:
50 / i
i + 5
(j - 8)
z := (x / 5) * 10;
y:= 15 mod 4;
y:= 1025 div 8;
Languages: en hu cz sk