Как принять входное комплексное число в Python

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