# Modify the greeting to correspond with your program's personality.
greeting = "I am Eliza.  How can I help you?"

def chat(n):
    print(greeting)
    for i in range(n):
        print(reply(input("> ")))
    input("> ")
    print("So long for now.  Have a nice day.")

# Rewrite the reply() function to implement your program's personality.
def reply(sentence):
    return "Reply"
