<Example Program>
Program if_example
Integer x
Read *,x
If (Mod(x,2)==0) Print *, 'even',x
End
Example Input
4
Execution Results
even 4