fork download
  1. input = "The rain in spain\n\tfalls mainly on the plain."
  2. words = input.split()
  3. for word in words:
  4. print word
  5.  
Success #stdin #stdout 0.01s 7896KB
stdin
Standard input is empty
stdout
The
rain
in
spain
falls
mainly
on
the
plain.