how to take input complex number in python code example
Example: how to take input complex number in python
complx = complex(input());
print(complx.real, complx.imag);
complx = complex(input());
print(complx.real, complx.imag);