sentence=input("Enter the sentence:")
word=input("Enter the word to be searched:")
if word in sentence:
print("Word Is present in sentence")
else:
print("Word Is not present in sentence")