seowonseok

add file(exit.py) in b_one

Showing 1 changed file with 8 additions and 0 deletions
1 +def exit(input):
2 + if(input == "exit"):
3 + print("exit")
4 + else:
5 + print("nothing")
6 +
7 +text = input("please input text: ")
8 +exit(text)