Gihoon Eom

exit feature added

Showing 1 changed file with 5 additions and 1 deletions
1 -print(input("input: "))
...\ No newline at end of file ...\ No newline at end of file
1 +userInput = input("input: ")
2 +if userInput.lower() == "exit":
3 + print("Exiting the program")
4 +else:
5 + print(userInput)
...\ No newline at end of file ...\ No newline at end of file
......