1# test complex interacting with special methods 2 3 4class A: 5 def __add__(self, x): 6 print("__add__") 7 return 1 8 9 10print(A() + 1j) 11