Here's the code to get the user to enter their name and a message: ```python name = input("Enter your name: ") message = input("Enter your message: ") print(f"Your name is {name}. Your message is {message}")``` This will print out the name and message in formatted text.