[Python] BOJ 11719번. 그대로 출력하기 2 작성일 2020-06-10 | In Algorithm | 11719번. 그대로 출력하기 2 문제 링크 https://www.acmicpc.net/problem/11719 풀이 코드 123456789# 11719번. 그대로 출력하기 2 # ide에서는 안되는데 제출하니까 된다... while True: try: print(input()) except EOFError: break 비고