What will this code print?class A: def hello(self): return "A" class B(A): def hello(self): return super().hello() + "B" print(B().hello())