Neighbors of the same sign

Neighbors of the same sign. Given a list of numbers, find and print the first pair of adjacent elements that have the same sign. If no such pair exists, leave the output blank.

Test Case Input (List of Numbers) Expected Output
1 1, -2, -3, 4 -2, -3
2 3, 5, -1, -2 3, 5
3 -7, -8, 2, 3 -7, -8
4 2, -3, 4, -5