# MCS 260 Fall 2021 Lecture 3
# Greet the user by name

username = input("Name? ")
print("Howdy ",username,"!",sep="")
