from cs50 import get_string # asks user for his name and says hello answer = get_string("What's your name? ") print("hello, " + answer)