class SentenceReadingAgent:
def __init__(self):
#If you want to do any initial processing, add it here.
pass
def solve(self, sentence, question):
#Add your code here! Your solve method should receive
#two strings as input: sentence and question. It should
#return a string representing the answer to the question.
pass