5 lines
No EOL
84 B
Python
5 lines
No EOL
84 B
Python
import sys
|
|
|
|
for line in sys.stdin:
|
|
sys.stdout.write(line)
|
|
sys.stdout.flush() |