# a list of strings. Each string is a management / report relationship.
#
# EXAMPLE INPUT:
#
# [
# 'B,E,F',
# 'A,B,C,D',
# 'D,G,I',
# 'G,H'
# ]
So, write some code (pseudo or language of your choice, including SQL) for the following:
A is the manager of B, C, D. B is the manager of E and F, and so forth.
# EXAMPLE OUTPUT:
#
# A
# ....B
# ........E
# ........F
# ....C
# ....D
# ........G
# ............H
# ........I