송민철

If you enter 'exit', the program will exit

Showing 1 changed file with 3 additions and 0 deletions
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)
\ No newline at end of file
......