There are many different ways, you can setup your MikroTik as an inbound load balancer. Inbound load balancer, means load balancing traffic coming into your network, and spreading the traffic to several different servers on local IPs.

Inbound load balance per source IP

Load balancing per IP, means you are session safe. In this simple setup, we mark each connection depending on the source IP, one mark for all even IPs and another mark for all odd IPs. As long as you do not have a huge amount of users from the same company (IP), this will statistically provide you proper load balancing and as all IPs consistently are sent to the same server, it is session safe. IP 1.2.3.122 ends with an even digit (2) and gets marked "pi-even". If the last digit is odd, it gets marked "pi-odd".

Now we NAT the packets based one the mangle mark we just created. We send all even marked packets to one local IP, and the odd to another local IP.

If you do not need failover, you are done - your packets will be load balanced. If you want to check out your NAT rules in Winbox, before they are enabled, you can add disabled=yes to the lines above, then you can review them in Winbox and press enable there.