There is another way to control the flow. Let's tell our program to only run a block of code if a certain condition is met.

Can you print the statement inside the parentheses? 

The code block in the if statement will only run if the condition given is true. The block outside will always run.

When the if statement is false the code outside of the parentheses is executed.