fork(23) download
  1. # your code goes here
  2.  
  3. a = [int(i) for i in input().split()]
  4. print(a)
Success #stdin #stdout 0.04s 9984KB
stdin
1 2 3 4 5 6 7
stdout
[1, 2, 3, 4, 5, 6, 7]