📝 **Task:** Predict what the program will output.
```python
print("cat" in "category")
print("dog" in "category")
```
📋 **What needs to be done:**
1. Write in the field what you think will be displayed
2. Click "Check"
💡 **Hint:** The `in` operator for strings looks for a substring. If there is a substring - `True`, otherwise - `False`.
🎯 Think: is there "cat" inside "category"? What about "dog"?