[Solved] Help in function

Hello!!!
Need help.
How to implement these functions?
Row = int( i / 4) this is the integer part of dividing the index
Col = i % 4 this is the remainder of dividing the index
Thanks to all

trunc(Variable(i) / 4)


mod(Variable(i), 4)

Thanks for the advice, everything works