Write a Python function `count_samepair(list1, list2, list3)` that takes three lists of equal length as input and returns the count of items that are identical and in the same position across all three lists.
#### Example Usage
```python [main.nopy]
print(count_samepair([1, 2, 3], [1, 2, 4], [1, 2, 3])) # Output: 2
print(count_samepair([1, 2, 3], [4, 5, 6], [7, 8, 9])) # Output: 0
print(count_samepair([1, 2, 3], [1, 2, 3], [1, 2, 3])) # Output: 3
```
#### Constraints
- The input lists will always have the same length.
- The lists can contain any hashable elements.