백준(BOJ) 풀이
[백준 11718] 그대로 출력하기
오호라-노이혼
2019. 11. 13. 09:41
k=100
while k:
try:
a=input().rstrip()
print(a)
k-=1
except EOFError:
break