노강호

add exit function

Showing 1 changed file with 3 additions and 0 deletions
def main():
print("Type \"exit\" to exit program")
while(1):
inp = input()
if(inp == "exit"):
break
print(inp)
......