Hide

Problem E
Chinese Remainder Theorem (non-relatively prime moduli)

Input

The first line of input consists of an integers T where 1T1000, the number of test cases. Then follow T lines, each containing four integers a, n, b, m satisfying 1n,m109, 0a<n, 0b<m.

Output

For each test case, output two integers x, K, where K=lcm(n,m) and 0x<K, giving the solution x(modK) to the equations x=a(modn),x=b(modm).

Sample Input 1 Sample Output 1
3
10000 23000 9000 23000
10000 23000 10000 23000
1234 2000 746 2002
no solution
10000 23000
489234 2002000
Hide

Please log in to submit a solution to this problem

Log in