박시진

exit function is added

x = input("Enter your message : ")
print(x)
\ No newline at end of file
x = input("If you enter 'exit' the program will exit : ")
if x == "exit":
quit()
else :
print(x)
\ No newline at end of file
......