fork download
// we read standard input line by line
while let line = readLine() {
	// we write the line to the standard output
	print(line)
}
Success #stdin #stdout 0.01s 7316KB
stdin
a
b
stdout
a
b