An if statement can be followed by an optional else statement, which is executed when the Boolean expression is false.
The syntax format is as follows:
if(boolean_expression){ # execute when boolean expression boolean_expression is true}else{ # execute when boolean expression boolean_expression is false}If the Boolean expression boolean_expression is true, the code within the if block is executed. If the Boolean expression is false, the code within the else block is executed.

Executing the above program, the output result is:
The value of a greater than 20a is: 100a The value of the condition is false is: