본문 바로가기

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

#75 백준 파이썬 [11718] 그대로 출력하기

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

 

#Solution

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