def name_printer(user_name):
    print(user_name)


name = input("Please enter your name.")
name_printer(name)