fork download
  1. print(*(str(i) + "," for i in range(11)), end = "")
  2. print(11)
  3.  
  4. #https://pt.stackoverflow.com/q/206532/101
Success #stdin #stdout 0.02s 9244KB
stdin
Standard input is empty
stdout
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,11