본문 바로가기

Programming [Python]/백준 알고리즘 솔루션

#80 백준 파이썬 [11719] 그대로 출력하기 2

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

 

#Solution

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