greeting = "Hello" name = input("What is your name? ") print(greeting, name)
python script.py
What is your name? Matt Hello Matt