Program to input a welcome message and print it

# Get the welcome message from the user
welcome_message = input("Enter your welcome message: ")

# Print the entered message
print(welcome_message)
Output:

Enter your welcome message: Welcome everyone!
Welcome everyone!

Leave a Reply

Your email address will not be published. Required fields are marked *