Math ceili / floor functions

Hello I’m looking forward of there are floor / ceili functions available in RoS?

RouterOS doesn’t have any floats, so ceil/floor functions don’t make sense anyway.

The “num” type is purely an integer type (a 64 bit signed integer to be precise), and any divisions with remainders are rounded down.

For example, 9 / 4 = 2.25, which in RouterOS is 2. And 9 / 5 = 1.8, which in RouterOS is 1.

I see, that’s interesting!

Thanks for help