If statements in Python are written as follows:
if condition:
body
Note that Python does not require parentheses around the condition (in fact, adding them is considered bad style) and that the body is indicated by a colon and indentation (conventionally four spaces), not curly braces.
Fill in the placeholders so that the actual outputs match the expected outputs.