You are given 3 integers $a, b, c$. Print the result of the expression: $a \times b \\; \\% \\; c$. Note that $\\%$ is the modulo operation.
### Input
- A single line contains three integers $a, b,c$.
### Output
- The result of the expression.
### Constraints
- $(1 \le a, b, c \le 10^9)$.
### Example
Input:
```4 5 7```
Output:
```6```