Take two Integer values and perform a relational operation on them. 

Figure 1: Int relational operator Node

Parameters

    • Input A - First integer value for evaluation.
    • Input B - Second integer value for evaluation.  
    • Relational Operator - Relational operation to perform.
      • Less than [A < B]
      • Greater than [A > B]
      • Equal [A == B]
      • Not equal [A != B]
      • Less or equal [A <= B]
      • Greater or equal [A >= B]