정수현

exit

b = input()
print(b)
import sys
a = input()
if a == 'exit':
sys.exit(1)
else:
print(a)
......