문제풀이/백준(Boj) 문제풀이

[백준][구현] 11719. 그대로 출력하기 - 2 (파이썬/Python)

얄루몬 2021. 10. 27. 18:30

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