What is the output of the following code? def stringDisplay(): while True: s = yield print(s*3) c = stringDisplay() next(c) c.send('Hi!!')