fork(1) download
  1. s = "11 12 13 14"
  2. print(" ".join([str(int(x)+1) for x in s.split()]))
Success #stdin #stdout 0.01s 9016KB
stdin
Standard input is empty
stdout
12 13 14 15