Task
📝 **Task:** Program should print 1..5 inclusive, but only prints 1..4. Fix the `range`.
📋 **Steps:**
- `range(1, 5)` produces 1, 2, 3, 4 (no 5)
- Change to `range(1, 6)`
💡 Rule: `range(start, stop)` is `[start, stop)`.
🎯 **Expected output:** `1\n2\n3\n4\n5`