fork download
  1. from sys import stdin
  2.  
  3. for line in stdin:
  4. print(line, end='')
Success #stdin #stdout 0.03s 9664KB
stdin
one
two
three
stdout
one
two
three