fork download
  1. import math
  2.  
  3. testCases = int(input())
  4.  
  5. while (testCases > 0) :
  6.  
  7. numbers = list(map(int, input().split()))
  8.  
  9. print (numbers)
  10.  
  11. testCases -= 1
  12.  
  13.  
Success #stdin #stdout 0.02s 27704KB
stdin
1
-10 -20 -30 -40
stdout
[-10, -20, -30, -40]