JuseongJIN

funtion: if input in 'exit', program exit

while (1):
txt = input("출력하고 싶은 말을 적어보세요!\n")
if txt == "exit":
print("종료")
break
else :
print(txt + "\n")
\ No newline at end of file