Gihoon Eom

exit feature added

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