fork(7) download
  1. a = [int(i) for i in input().split()]
  2. print(*a, sep=', ')
Success #stdin #stdout 0.02s 9408KB
stdin
1 2 3 4 5
stdout
1, 2, 3, 4, 5