# L-2 MCS 260 our first interactive program : hello_there.py

"""
Our first interactive program is a modification on hello.py:
the user is prompted to enter a name and
then a personalized greeting is printed.
"""

NAME = input('Who\'s there ? ')
print('hello', NAME , '!')
