김대철

Implement Exit

Showing 1 changed file with 2 additions and 0 deletions
def echo():
while True:
a = input()
if a == 'exit':
break
print(a)
......