fork download
  1. from sys import stdin
  2.  
  3. for line in stdin:
  4. print (line.split())
  5.  
Success #stdin #stdout 0.04s 9520KB
stdin
1 2 3 44
55 3 2
34 53 2
stdout
['1', '2', '3', '44']
['55', '3', '2']
['34', '53', '2']