echo.py 189 Bytes
print("입력한 글자가 exit면 프로그램 종료 그 외는 입력한 글자 출력")
a = input()
if (a == "exit"):
    exit()
else:
    print("입력한 글자 출력")
    print(a)