Task
📝 **Task:** Fill in the `if/else` condition.
The code is almost done. Just one missing comparison operator.
📋 **Steps:**
1. Find the line `if age 18:` (operator missing)
2. Insert the correct comparison: check that "age is at least 18"
3. Run — should print `Adult`
💡 **Similar example:**
```python
temperature = 25
if temperature > 20:
print("Warm")
else:
print("Cool")
# With 25 prints: Warm
```
📋 **Comparison operators:**
```
> greater than
< less than
>= greater than or equal
<= less than or equal
== equal
!= not equal
```
⚠️ "At least 18" means "18 or greater". Which operator?