# Mod

**Example:** Mod(dividend: 10, divider: 3) = result: 3, remainder: 1.

### Flow Connections <a href="#flow-connections" id="flow-connections"></a>

* \[Input] In - starts the block's execution.
* \[Output] Out - activates when the block has finished its execution.

### Data Connections <a href="#data-connections" id="data-connections"></a>

* \[Input] Dividend (integer) - number to divide.
* \[Input] Divider (integer) - number to divide by.
* \[Output] Result (integer) - result of the division.
* \[Output] Remainder (integer) - remainder of the division, result of the [modulo operation](https://en.wikipedia.org/wiki/Modulo_operation).
