fork download
  1. # your code goes here
  2.  
  3. l1 = [1,2,3,4,5]
  4. l2 = [3,4,5,6,7]
  5. print(l1+l2)
Success #stdin #stdout 0.02s 9096KB
stdin
Standard input is empty
stdout
[1, 2, 3, 4, 5, 3, 4, 5, 6, 7]