8 lines
71 B
Perl
8 lines
71 B
Perl
while ($_ = <>) {
|
|
print $_;
|
|
}
|
|
while (<>) {
|
|
print;
|
|
}
|
|
|
|
|