# Allison Obourn
# CS 115, Autumn 2021
# Lecture 3

# This program prompts the user to answer their name and then prints a
# hellp message.

def main():
    user_name = input("Enter your name: ")
    print("Hello", user_name + "!")

main()
