Task
📝 **Task:** Scores list `scores = [78, 92, 65, 88, 95, 71]`. Print the highest.
📋 Use `max(scores)` and `print`.
💡 **Similar example (prices):**
```python
prices = [100, 250, 80, 150]
print(min(prices)) # 80
print(max(prices)) # 250
```
🎯 **Expected output:** `95`