x = {"a", "b", "c"}
y = {"c", "d", "e","a"}
z = {"f", "g", "c"}

result = x.intersection(y, z)

print(result)