이재용

add exit

1 +while True:
2 + s = input("아무말이나 입력하세요(If you enter ‘exit’, the program will exit)")
3 + if s == "exit":
4 + break
5 + print(s)