# userinput2.py # simple user input program def repeattext(text): print ("you entered:", text) alpha = input("Enter text: ") repeattext(alpha)