# greetings.py # ------------ # By MWC contributors user_name = input("What's your name? ") greeting = "Hello, " + user_name print(greeting)