fork download
  1. a=input().split()
  2. for i in range(len(a)):
  3. print(a[i])
Success #stdin #stdout 0.02s 9120KB
stdin
first second third
stdout
first
second
third