names = []
for line in open("names.txt"):
_, tokens = line.rstrip().split("\t", 1)
names.extend(t for t in tokens.split() if t != "(C)" and not t.replace(".", "").isdigit())
names.sort()
def quot(s):
return '"%s"' % s
print(", ".join(quot(name) for name in names))