a = 10
b = 5
sum = a + b
difference = a - b
product = a * b
quotient = a / b
modulus = a % b

_If sum == 15 _Then
    _Print_Console("The sum is 15")
_End_If

_If difference ~= 0 _Then
    _Print_Console("The difference is not zero")
_End_If

_If product > 20 _Then
    _Print_Console("The product is greater than 20")
_End_If

_If quotient < 3 _Then
    _Print_Console("The quotient is less than 3")
_End_If

_If modulus == 0 _Then
    _Print_Console("The modulus is zero")
_End_If