daeun

add exit function to echo

1 s=input('input: ') 1 s=input('input: ')
2 2
3 -while(1): 3 +while(s!='exit'):
4 print(s) 4 print(s)
5 s=input('input: ') 5 s=input('input: ')
......