How can you determine if there is an integer solution (a, b), where both are positive, relatively prime integers greater than 1?
A) Check if a and b are both odd numbers.
B) Verify that the greatest common divisor (GCD) of a and b is 1.
C) Confirm that the product of a and b is a prime number.
D) Ensure that both a and b are multiples of 3.