Input Format
The overloaded operator + should receive two complex numbers ( and ) as parameters. It must return a single complex number.
The overloaded operator << should add "" to the stream where is the real part and is the imaginary part of the complex number which is then passed as a parameter to the overloaded operator.
Output Format
As per the problem statement, for the output, print "" followed by a newline where and .
Sample Input
3+i4
5+i6
Sample Output
8+i10
Explanation
Given output after performing required operations (overloading + operator) is 8+i10.
Answer: