$n,i,j \in\mathbb{N}$
$r \in \mathbb{R^{+}}$
$k = \left \lfloor{r}\right \rfloor $ (integer part of $r$)
$round ()$ = round function to make an integer
$round (n \times r) = ik + j(k+1)$
For example, Assume that $n = 8$, $r = 3.2$, then $round(8 \times 3.2) = round(25.6) = 26 = 2\times3 + 5\times(3+1)$.
how to prove this? or any related problems are welcome.