정수현

exit

1 -b = input() 1 +import sys
2 -print(b) 2 +
3 +a = input()
4 +
5 +if a == 'exit':
6 + sys.exit(1)
7 +else:
8 + print(a)
......