박찬수

Add Exit Function

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