name = input("What is your name?")
def fix_capitalization(name):
return name.title().strip()
def print_message(name):
print("Hello", name, "how are you?")
Which of the following lines of code will have the data flow correctly through both functions in order to print the message with the fixed capitalization?