MPL Documentation

AND

AND yields TRUE only if both values are TRUE:
// The statement is executed only if BOTH conditions are true:

   if (A = 1) AND (B = 2) then writeln('Bingo!');
Source: Reserved Words
See Also:
not, or, xor.