Given integers `x`, `y`, we call `(x, y)` a point. Order matters. That is, `(2, 3)` is a different point from `(3, 2)`.
```
x = int(input())
y = int(input())
label = 'negative'
if x >= 0 and x <= 5:
if y >= 0 and y <= 5:
label = 'positive'
print(label)
```
Find the total number of points for which this code will output the value `positive`.