Task
📝 **Task:** Find the bug in the condition.
There's an error — the `if` uses assignment `=` instead of comparison `==`.
📋 **Steps:**
1. Look at `if x = 10:` — only one `=`
2. Change to two — `if x == 10:`
3. Run. It should print `Ten`
💡 **How to remember:**
- one `=` → "put this value into the variable" (assignment)
- two `==` → "is it equal?" (comparison)
```python
score = 100 # put 100 into score
if score == 100: # check: does score equal 100?
print("Max")
```
⚠️ **Hint:** Python raises `SyntaxError` for `=` inside an `if` — it's not valid syntax.
🎯 **Expected output:** `Ten`