📝 **Task:** Predict what the program will output.
```python
s = "Python"
print(s[1:4])
print(s[::-1])
```
📋 Enter two lines and check.
💡 **Hint:**
- `s[1:4]` — characters from index 1 to 3 (4 is NOT included)
- `s[::-1]` — the entire line is backwards
🎯 Think: what characters does `"Python"` have in positions 1, 2, 3?