name = input("Enter your name: ") print(name) print("Hello, {name}. Nice to meet you!") // Output: Hello, (user's name). Nice to meet you!