given two list of strings, in which each string contains id, name and department of employees, and another list of string in which each string specified which employee is friend with another employee. Output the employee id and all its friend. So if 1 is friend with 2 and 2 is friend with 9,10. Output should be 1 is friend with 2,9,10.