Skip to content
Snippets Groups Projects
13.py 264 B
Newer Older
hacker717's avatar
hacker717 committed
s = {input() for _ in range(int(input()))}

for _ in range(int(input())):
    for _ in range(int(input())):
        f = input()
        if f in s:
            s.remove(f)

if s:
    print(*sorted(list(s)), sep="\n")
else:
    print("Готовить нечего")