박시진

exit function is added

1 -x = input("Enter your message : ")
2 -print(x)
...\ No newline at end of file ...\ No newline at end of file
1 +x = input("If you enter 'exit' the program will exit : ")
2 +
3 +if x == "exit":
4 + quit()
5 +else :
6 + print(x)
...\ No newline at end of file ...\ No newline at end of file
......