홍진섭

add exit condition -- 20210327 1436

while True:
print("\nEntered sentence : " + input("input any sentence : ") + '\n')
sentence = input("input any sentence (If you enter \'exit\', the program will exit) : ")
if sentence == "exit":
break
print("\nEntered sentence : " + sentence + '\n')
......