/* Test and operator with negative numbers - fixed syntax */ /* Test with proper parentheses */ result1 : ((-5) >= 0) and ((-5) <= 120); /* Test step by step */ step1 : (-5) >= 0; step2 : (-5) <= 120; result2 : step1 and step2; ..out result1; ..out step1; ..out step2; ..out result2;