Secret Message

Write a program secret_message.py that asks the user to enter their name. The program should then print a personalized 'hello' message to that person. If the person enters your name ("Richard" for example), it should print out a two-line secret message intended just for that person.

Finally, the program should print "Goodbye" to the person, regardless of whether or not the secret message was displayed.

Sample interactions:

What's your name? Danielle
Hello, Danielle!
Goodbye, Danielle.

What's your name? Richard
Hello, Richard!
Don't tell anybody, but
I think you're the best!
Goodbye, Richard.