echo.py 161 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 print("This is a echo program") print("If you enter 'exit', the program will exit") while(True): a = input() if (a == "exit"): break print(a)