def effective_employee_show(employers):
most_effective = None
highest_efficiency = float('-inf'
for employee, efficiency in employers.items():
if efficiency > highest_efficiency:
most_effective = employee
highest_efficiency = efficiency
return most_effective