fork download
  1. class com:
  2. def __init__(self):
  3. print("A")
  4.  
  5. class b(com):
  6. def __init__(self):
  7. super().__init__()
  8. print("B")
  9.  
  10. b = b()
Success #stdin #stdout 0.03s 9332KB
stdin
Standard input is empty
stdout
A
B