filtered = [token.text for token in doc if not token.is_stop]
print("Sentence without stop words:")
print(" ".join(filtered))