An HR tool stores an org chart in one employees table: each person has an id, a name, and an optional manager_id pointing at another employee's id.
employees
Your task: return employee and manager — each person's name and their manager's name. People with no manager can be dropped.
Assign your answer DataFrame to result. Row order doesn't matter.