x = 10
y = 5

_If x == y _Then
    _Print_Console("x is equal to y")
_Else
    _Print_Console("x is not equal to y")
_End_If

_If x > y _Then
    _Print_Console("x is greater than y")
_End_If

_If x < y _Then
    _Print_Console("x is less than y")
_End_If

_If x >= y _Then
    _Print_Console("x is greater than or equal to y")
_End_If

_If x <= y _Then
    _Print_Console("x is less than or equal to y")
_End_If