The sum of two numbers is their value added together. This operation is called additive summation or addition. There are many ways of writing sums, including:
- Addition ()
- Summation ()
- Code:
- Sum = 0
- For I = M to N
- Sum = Sum + X(I)
- Next I (in Visual BASIC)