박찬수

Add Exit Function

Showing 1 changed file with 5 additions and 1 deletions
def Echo():
msg = input()
print(msg)
if(msg == "exit"):
quit()
else:
print(msg)
Echo()
\ No newline at end of file
......