[파이썬/python] 백준 11719번 : 그대로 출력하기 2 (🥉3)

https://www.acmicpc.net/problem/11719

방법1

while True:
    try:
        print(input())
    except EOFError:
        break

try문

 

방법2

import sys
print(sys.stdin.read())
comment