7 lines
99 B
D
7 lines
99 B
D
import std.stdio;
|
|
|
|
void main() {
|
|
foreach (line; stdin.byLine) {
|
|
writeln(line);
|
|
}
|
|
}
|