A conditional structure is one or more conditional expressions that trigger a choice between different logical branches. Each branch causes a different sequence of instructions to execute. There are many ways to implement a compound expression. The following code shows some of the ways.
if (opnd1 is even) and (opnd2 is odd) then print (opnd1 - opnd2) else print (opnd1 + opnd2)