Input/raw_input take a string as an argument, for this purpose, that is printed before what is input:
me_typed = input('Me: ')
That's it. The user will see "Me: ", they will see the characters they type after it. No need for print, since it's included.