정민우

add exit function

Showing 1 changed file with 6 additions and 2 deletions
userInput = input()
print(userInput)
while True:
userInput = input()
if userInput == "exit":
exit()
else:
print(userInput)
......