그대로 출력하기 (11718)
Created:
입력받은 값을 그대로 출력하라.
Bash
Bash 1
2
3
4
5
6
7
while :; do
read str
if [ "$str" == "" ]; then
break
fi
echo "$str"
done
따옴표로 묶지 않으면 출력 형식이 잘못되었다고 뜬다.
Node.js
JavaScript 1
2
const [...arr] = require("fs").readFileSync(0).toString().trim().split("\n");
console.log(arr.join("\n"));
Python3
Python 1
2
3
try:
while 1: print(input())
except: pass
Ruby
Ruby 1
2
3
4
5
6
7
begin
while 1
puts gets.chomp
end
rescue
nil
end