cara mengambil bilangan kompleks input dalam python

complx = complex(input());
print(complx.real, complx.imag);
Viper