이혜인

adding exit func

def Exit(data):
if(data == "exit"):
quit()
while(True):
data = input("enter the data: \n")
Exit(data)
print(data)
......