Task
📝 **Task:** Find the bug in a `while` loop.
The program should print 1..5 and stop, but it loops forever.
📋 **Steps:**
1. Look at the body of the `while` loop
2. Counter `count` is never incremented
3. Add `count += 1` inside the loop
4. After 5 iterations `count <= 5` becomes False and the loop ends
💡 **Working example:**
```python
n = 1
while n <= 3:
print(n)
n += 1 # ← without this it would loop forever
# 1
# 2
# 3
```
⚠️ **Hint:** every `while` must somewhere modify its condition — otherwise infinite loop.
🎯 **Expected output:**
```
1
2
3
4
5
```