Employee stores name and salary. Subclass Manager additionally stores a reports list — its __init__(self, name, salary, reports) must call super().__init__(name, salary) rather than duplicating the assignments, then add team_size() returning len(reports).Manager('Meera', 180000, ['a', 'b']).team_size()2
Base init handled name/salary; the subclass added its own state.
super() needs no arguments in Python 3.
Add the new attribute after the super call.