이준성

Implement exit function

Showing 1 changed file with 6 additions and 2 deletions
echo = input()
print(echo)
\ No newline at end of file
while 1:
echo = input("입력 : ")
if echo == "exit":
quit()
print("출력 : {}\n".format(echo))
......