

The first line contains a single integer ‘T’ representing the number of test cases.
The first line of each test case will contain a single string, representing the first complex number 'NUM1'.
The second line of each test case will contain a single string, representing the second complex number 'NUM2'.
For each test case, return the complex multiplication as a string of the form “A+Bi”.
You don’t need to print anything; it has already been taken care of. Just implement the given function.
1 <= T <= 10^5
-10^7 <= A, B <= 10^7
Time Limit: 1 sec
Let first and the second complex number be, ‘a + bi’ and ‘c+di’, then
'RESULT' = (a + bi) *(c + di) = (ac + adi) = (bci + bd * (-1)) as i^2 = -1
‘RESULT’ = (ac - bd) + (ad+ bc) i
The steps are as follows: