echo_program.py 129 Bytes Raw Blame History Permalink 1 2 3 4 5 while 1: a = input("User Input (enter 'exit' to quit): ") if (a=='exit'): break; print("User's Input: " + a)