fork download
  1. a = [1, 2, 3]
  2. b = [4, 5, 6]
  3. print (a + b)
  4.  
  5. #https://pt.stackoverflow.com/q/80537/101
Success #stdin #stdout 0.02s 9168KB
stdin
Standard input is empty
stdout
[1, 2, 3, 4, 5, 6]